Files
my_shop/docker-compose.yml
2026-01-21 02:13:00 +03:00

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