20 lines
366 B
YAML
20 lines
366 B
YAML
|
version: "3"
|
||
|
|
||
|
services:
|
||
|
|
||
|
frontend:
|
||
|
build: ./frontend
|
||
|
ports:
|
||
|
- 5000:80
|
||
|
volumes:
|
||
|
- /etc/localtime:/etc/localtime:ro
|
||
|
labels:
|
||
|
- "com.centurylinklabs.watchtower.enable=true"
|
||
|
backend:
|
||
|
build: ./backend
|
||
|
container_name: yt-dls-backend
|
||
|
ports:
|
||
|
- 8080:8080
|
||
|
labels:
|
||
|
- "com.centurylinklabs.watchtower.enable=true"
|