This commit is contained in:
Tomasz Borychowski 2021-01-25 16:02:35 +00:00
parent 54742fbe06
commit 4c917eea87
7 changed files with 83 additions and 77 deletions

View File

@ -153,19 +153,23 @@ So, without further ado, here's the current list:
# Media Managers
- [Bazarr (subtitles)](apps/media/bazarr.md)
- [Calibre (e-books)](apps/media/calibre.md)
- [Deemix](apps/media/deemix.md)
- [Invidious](apps/media/invidious.md)
- [Jackett (search engine proxy/adapter)](apps/media/jackett.md)
- [Komga (comics)](apps/media/komga.md)
- [Navidrome](apps/media/navidrome.md)
- [Radarr (movies)](apps/media/radarr.md)
- [Readerr (ebooks & comics)](apps/media/readerr.md)
- [Sonarr (tv shows)](apps/media/sonarr.md)
- [Tautulli](apps/media/tautulli.md)
- [Ubooquity](http://vaemendis.net/ubooquity) 🔗 - Another Ebook & Comics server. Didn't work properly.
- [Youtube downloader](apps/media/youtube-downloader.md)
- [Bazarr](apps/media/bazarr.md) - subtitles
- [Calibre](apps/media/calibre.md) - e-books
- [Deemix](apps/media/deemix.md) - music
- [Jackett](apps/media/jackett.md) - search engine proxy/adapter
- [Komga](apps/media/komga.md) - comics
- [Navidrome](apps/media/navidrome.md) - music streaming server
- [Radarr](apps/media/radarr.md) - movies
- [Readerr](apps/media/readerr.md) - ebooks & comics
- [Sonarr](apps/media/sonarr.md) - tv shows
- [Tautulli](apps/media/tautulli.md) - dashboard for Plex
- [Ubooquity](http://vaemendis.net/ubooquity) 🔗 - another Ebook & Comics server. Didn't work properly.
### Apps for Youtube
- [Invidious](apps/media/invidious.md) - Privacy-focused YT Proxy interface
- [Metube](apps/media/youtubedl-material.md) - youtube-dl webUI
- [YoutubeDL-web](apps/media/youtubedl-web.md) - youtube-dl webUI
- [YoutubeDL-material](apps/media/youtubedl-material.md) - youtube-dl webUI
# Monitors

View File

@ -64,7 +64,7 @@ services:
## Tips & Tricks
#### Remove the footer
After starting the container run:
After starting the container (before opening the site in the browser!) run:
```sh
docker-compose exec -u root invidious sh -c "echo \".footer{display:none;}\" >> /invidious/assets/css/default.css"
```

22
apps/media/metube.md Normal file
View File

@ -0,0 +1,22 @@
# Metube
- [Github repo](https://github.com/alexta69/metube)
-
![Screenshot](metube.png)
## docker-compose.yml
```yml
---
version: "3"
services:
metube:
image: alexta69/metube
container_name: metube
restart: unless-stopped
user: "1001:1001"
ports:
- "8081:8081"
volumes:
- ./downloads:/downloads
```

BIN
apps/media/metube.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 396 KiB

View File

@ -1,63 +0,0 @@
# YoutubeDL-web
- [Github repo](https://github.com/franhp/youtubedl-web)
![Screenshot](youtubedl-web.png)
## docker-compose.yml
```yml
---
version: '3'
services:
youtubedl-web:
image: franhp/youtubedl-web:latest
container_name: youtubedl-web
restart: unless-stopped
ports:
- "5000:5000"
volumes:
- ./downloads:/downloads
```
----
# YoutubeDL-Material
- [Github repo](https://github.com/Tzahi12345/YoutubeDL-Material)
![Screenshot](youtubedl-material.png)
## docker-compose.yml
```yml
---
version: "3"
services:
ytdl_material:
image: tzahi12345/youtubedl-material
ports:
- "8998:17442"
restart: unless-stopped
environment:
ytdl_url: http://localhost:8998
ytdl_port: '17442'
ytdl_use_encryption: 'false'
ytdl_audio_folder_path: video/
ytdl_video_folder_path: video/
ytdl_title_top: Youtube Downloader
ytdl_allow_quality_select: 'true'
ytdl_file_manager_enabled: 'false'
ytdl_download_only_mode: 'false'
ytdl_allow_multi_download_mode: 'true'
ytdl_use_youtube_api: 'false'
ytdl_youtube_api_key: 'false'
ytdl_default_theme: dark
ytdl_allow_theme_change: 'false'
ytdl_use_default_downloading_agent: 'true'
ytdl_custom_downloading_agent: 'false'
ytdl_allow_advanced_download: 'false'
write_ytdl_config: 'true'
ALLOW_CONFIG_MUTATIONS: 'true'
volumes:
- ./downloads:/app/video
```

View File

@ -0,0 +1,22 @@
# Metube
- [Github repo](https://github.com/Tzahi12345/YoutubeDL-Material)
![Screenshot](youtubedl-material.png)
## docker-compose.yml
```yml
---
version: "3"
services:
metube:
image: alexta69/metube
container_name: metube
restart: unless-stopped
user: "1001:1001"
ports:
- "8081:8081"
volumes:
- ./downloads:/downloads
```

View File

@ -0,0 +1,21 @@
# YoutubeDL-web
- [Github repo](https://github.com/franhp/youtubedl-web)
![Screenshot](youtubedl-web.png)
## docker-compose.yml
```yml
---
version: '3'
services:
youtubedl-web:
image: franhp/youtubedl-web:latest
container_name: youtubedl-web
restart: unless-stopped
ports:
- "5000:5000"
volumes:
- ./downloads:/downloads
```