Add YoutubeDL

This commit is contained in:
mr-vercetti 2022-06-22 13:18:01 +02:00
parent 23f3a3e071
commit 0ab2df2f90
2 changed files with 24 additions and 0 deletions

View File

@ -15,6 +15,7 @@ All services are deployed using Docker compose and are run as a non-root user.
* [Sonarr](https://github.com/linuxserver/docker-sonarr) - TV show collection manager
* [Bazarr](https://github.com/linuxserver/docker-bazarr) - subtitle manager
* [delugevpn](https://github.com/binhex/arch-delugevpn) - torrent client with VPN and Privoxy
* [YoutubeDL](https://github.com/Tzahi12345/YoutubeDL-Material) - Youtube media downloader
### Personal cloud
* [Nextcloud](https://github.com/linuxserver/docker-nextcloud) - filesync/cloud solution

View File

@ -0,0 +1,23 @@
services:
ytdl-material:
image: tzahi12345/youtubedl-material
container_name: ytdl-material
networks:
- ytdl-material
environment:
- UID=${PUID}
- GID=${PGID}
- ALLOW_CONFIG_MUTATIONS=true
volumes:
- ${APPS_DIR}/ytdl-material:/app/appdata
- ${DATA_DIR}/ytdl/audio:/app/audio
- ${DATA_DIR}/ytdl/video:/app/video
- ${DATA_DIR}/ytdl/subscriptions:/app/subscriptions
- ${DATA_DIR}/ytdl/users:/app/users
ports:
- "8998:17442"
restart: unless-stopped
networks:
ytdl-material:
name: ytdl-material