29 lines
675 B
YAML
29 lines
675 B
YAML
services:
|
|
channeltube:
|
|
image: thewicklowwolf/channeltube:latest
|
|
container_name: channeltube
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=America/Indiana/Indianapolis
|
|
volumes:
|
|
- ./config:/channeltube/config
|
|
- /volume1/Media/Youtube/movies:/channeltube/downloads
|
|
- /volume1/Media/Youtube/audio:/channeltube/audio_downloads
|
|
ports:
|
|
- "5444:5000"
|
|
restart: unless-stopped
|
|
networks:
|
|
- proxy
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 1G
|
|
cpus: '2.0'
|
|
labels:
|
|
- "autoheal=true"
|
|
- "com.centurylinklabs.watchtower.enable=true"
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|