23 lines
380 B
YAML
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:
|