Jellyfin + yt-dlp + long flight = Magic
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

21 lines
521 B

version: '3.5'
services:
ytdlp:
build: .
container_name: yt-dlp
volumes:
- ./data/jellyfin/media/pirate-youtube:/export/jellyfin
- ./data/batch.txt:/export/batch.txt
- ./entrypoint.sh:/srv/entrypoint.sh
environment:
- LOG_LEVEL=DEBUG
jellyfin:
image: jellyfin/jellyfin
container_name: jellyfin
user: 1337:1337
volumes:
- ./data/jellyfin/config:/config
- ./data/jellyfin/cache:/cache
- ./data/jellyfin/media:/media
ports:
- 8080:8096