17 lines
488 B
YAML
17 lines
488 B
YAML
services:
|
|
django:
|
|
build: .
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- .:/app
|
|
ports:
|
|
- "3030:3030"
|
|
network_mode: "host"
|
|
command: >
|
|
sh -c "python manage.py makemigrations blog --noinput &&
|
|
python manage.py makemigrations api --noinput &&
|
|
python manage.py migrate --noinput &&
|
|
python manage.py collectstatic --noinput &&
|
|
gunicorn BH.wsgi:application --bind 0.0.0.0:3030 --workers ${GUNICORN_WORKERS:-3}"
|