mirror of
https://github.com/chibicitiberiu/ytsm.git
synced 2024-02-24 05:43:31 +00:00
22 lines
403 B
YAML
22 lines
403 B
YAML
version: '3.1'
|
|
|
|
services:
|
|
nginx:
|
|
image: nginx:latest
|
|
volumes:
|
|
- ./docker/nginx:/etc/nginx/conf.d/
|
|
- ./app/YtManagerApp/static:/www/static
|
|
- ./data/media:/www/media
|
|
ports:
|
|
- "80:80"
|
|
depends_on:
|
|
- web
|
|
|
|
web:
|
|
build: .
|
|
tty: true
|
|
ports:
|
|
- "8000:8000"
|
|
volumes:
|
|
- ./data:/usr/src/ytsm/data
|
|
- ./downloads:/usr/src/ytsm/downloads |