ytsm/docker-compose.yml

24 lines
399 B
YAML
Raw Normal View History

2018-10-30 06:15:49 +00:00
version: '3.1'
services:
nginx:
image: nginx:latest
volumes:
- ./nginx:/etc/nginx/conf.d/
- ./app/YtManagerApp/static:/www/static
ports:
- "80:80"
depends_on:
- web
web:
build: .
env_file:
- sqlite3.env.env
2018-10-30 06:15:49 +00:00
tty: true
ports:
- "8000:8000"
volumes:
- ./media:/usr/src/app/data/media
- ./db:/usr/src/app/data/db