diff --git a/README.md b/README.md index 5a1b598..013f5ba 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/apps/media/invidious.md b/apps/media/invidious.md index d86268b..4a9501e 100644 --- a/apps/media/invidious.md +++ b/apps/media/invidious.md @@ -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" ``` diff --git a/apps/media/metube.md b/apps/media/metube.md new file mode 100644 index 0000000..b129ad8 --- /dev/null +++ b/apps/media/metube.md @@ -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 +``` diff --git a/apps/media/metube.png b/apps/media/metube.png new file mode 100644 index 0000000..b05909e Binary files /dev/null and b/apps/media/metube.png differ diff --git a/apps/media/youtube-downloader.md b/apps/media/youtube-downloader.md deleted file mode 100644 index 705c328..0000000 --- a/apps/media/youtube-downloader.md +++ /dev/null @@ -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 -``` diff --git a/apps/media/youtubedl-material.md b/apps/media/youtubedl-material.md new file mode 100644 index 0000000..5364751 --- /dev/null +++ b/apps/media/youtubedl-material.md @@ -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 +``` diff --git a/apps/media/youtubedl-web.md b/apps/media/youtubedl-web.md new file mode 100644 index 0000000..3965b66 --- /dev/null +++ b/apps/media/youtubedl-web.md @@ -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 +```