services: web: build: . volumes: - .:/app ports: - "8080:8000" environment: - DEBUG=1 # Новая команда для Gunicorn command: gunicorn core.wsgi:application --bind 0.0.0.0:8000 --workers 3