From 0ab2df2f9057c3fb39f5ff99e2f8be6b7e4803d5 Mon Sep 17 00:00:00 2001 From: mr-vercetti <87.milewski@gmail.com> Date: Wed, 22 Jun 2022 13:18:01 +0200 Subject: [PATCH] Add YoutubeDL --- README.md | 1 + docker/stacks/ytdl-material/ytdl-material.yml | 23 +++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 docker/stacks/ytdl-material/ytdl-material.yml diff --git a/README.md b/README.md index 7860715..ab9dea6 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/docker/stacks/ytdl-material/ytdl-material.yml b/docker/stacks/ytdl-material/ytdl-material.yml new file mode 100644 index 0000000..0665505 --- /dev/null +++ b/docker/stacks/ytdl-material/ytdl-material.yml @@ -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