mirror of
https://github.com/mr-vercetti/homeserver.git
synced 2025-01-18 16:25:35 +01:00
Add YoutubeDL
This commit is contained in:
parent
23f3a3e071
commit
0ab2df2f90
@ -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
|
* [Sonarr](https://github.com/linuxserver/docker-sonarr) - TV show collection manager
|
||||||
* [Bazarr](https://github.com/linuxserver/docker-bazarr) - subtitle manager
|
* [Bazarr](https://github.com/linuxserver/docker-bazarr) - subtitle manager
|
||||||
* [delugevpn](https://github.com/binhex/arch-delugevpn) - torrent client with VPN and Privoxy
|
* [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
|
### Personal cloud
|
||||||
* [Nextcloud](https://github.com/linuxserver/docker-nextcloud) - filesync/cloud solution
|
* [Nextcloud](https://github.com/linuxserver/docker-nextcloud) - filesync/cloud solution
|
||||||
|
23
docker/stacks/ytdl-material/ytdl-material.yml
Normal file
23
docker/stacks/ytdl-material/ytdl-material.yml
Normal 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
|
Loading…
Reference in New Issue
Block a user