Files
nas-compose/services/youtube-dl/docker-compose.yml
2023-02-20 19:24:07 +11:00

32 lines
745 B
YAML

name: Youtube-DL
services:
youtube-dl:
hostname: youtube-dl
image: alexta69/metube
environment:
UID: ${NASCOMPOSE_UID?}
GID: ${NASCOMPOSE_GID?}
YTDL_OPTIONS: >
{
"writesubtitles": true,
"subtitleslangs": ["all", "-live_chat"],
"subtitlesformat": "ass/srt/best",
"postprocessors": [
{ "key": "FFmpegEmbedSubtitle" },
{ "key": "FFmpegMetadata" }
]
}
networks:
- reverse-proxy
volumes:
- ${NASCOMPOSE_DATA?}/ytdl/:/downloads/
restart: unless-stopped
labels:
traefik.enable: true
traefik.http.routers.youtube-dl.middlewares: authelia@file
networks:
reverse-proxy:
external: true