11 lines
245 B
YAML
11 lines
245 B
YAML
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 |