Files
django_bartool_ovh/docker-compose.yml
2024-11-24 19:11:41 +00:00

23 lines
380 B
YAML

services:
web:
build: ./web
command: gunicorn bartool_ovh.wsgi:application --bind 0.0.0.0:8000
volumes:
- ./app/:/home/app/web
expose:
- 8000
env_file:
- ./web/env.dev
nginx:
build: ./nginx
volumes:
- static_volume:/home/app/web/staticfiles
ports:
- 1337:80
depends_on:
- web
volumes:
static_volume: