21 lines
491 B
YAML
21 lines
491 B
YAML
services:
|
|
metube:
|
|
image: ghcr.io/alexta69/metube
|
|
container_name: metube
|
|
restart: unless-stopped
|
|
ports:
|
|
# - "8081:8081"
|
|
environment:
|
|
- DOWNLOAD_MODE=limited
|
|
- MAX_CONCURRENT_DOWNLOADS=3
|
|
- DELETE_FILE_ON_TRASHCAN=true
|
|
- DEFAULT_OPTION_PLAYLIST_STRICT_MODE=true
|
|
volumes:
|
|
- ./volumes/MeTube_downloads:/downloads
|
|
labels:
|
|
- traefik.enable=true
|
|
networks:
|
|
- traefik-proxy
|
|
networks:
|
|
traefik-proxy:
|
|
external: true |