-
-
Save NuroDev/13460caef212f8bb00e0ac56a2d66844 to your computer and use it in GitHub Desktop.
Raspberry Pi - Home Media Stack | Muximux, Plex, PlexRequests, Sonarr, Radarr, NZBGet, Deluge
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Host directory paths | |
config_dir=/mnt/Pi/config/ | |
downloads_dir=/mnt/Pi/downloads/ | |
media_dir=/mnt/Pi/media/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "2" | |
services: | |
muximux: | |
image: lsioarmhf/muximux:latest | |
container_name: muximux | |
ports: | |
- "8181:80" | |
volumes: | |
- "${config_dir}/muximux/:/config" | |
jackett: | |
image: lsioarmhf/jackett:latest | |
container_name: jackett | |
restart: always | |
ports: | |
- "9117:9117" | |
environment: | |
- JACKETT_KEY=9818 | |
volumes: | |
- ${config_dir}/jackett:/config | |
- ${downloads_dir}:/downloads | |
plex: | |
image: "lsioarmhf/plex:latest" | |
container_name: plex | |
network_mode: "host" | |
volumes: | |
- "${config_dir}/plex/:/config" | |
- "${media_dir}/movies/:/movies" | |
- "${media_dir}/tvshows/:/tvshows" | |
- "${media_dir}/transcode/:/transcode" | |
sonarr: | |
image: lsioarmhf/sonarr:latest | |
container_name: sonarr | |
ports: | |
- "8989:8989" | |
volumes: | |
- "${config_dir}/sonarr/:/config" | |
- "${media_dir}/tvshows/:/tv" | |
- "${downloads_dir}/:/downloads" | |
radarr: | |
image: lsioarmhf/radarr:latest | |
container_name: radarr | |
ports: | |
- "7878:7878" | |
volumes: | |
- "${config_dir}/radarr/:/config" | |
- "${media_dir}/movies/:/movies" | |
- "${downloads_dir}:/downloads" | |
nzbget: | |
image: lsioarmhf/nzbget:latest | |
container_name: nzbget | |
ports: | |
- "6789:6789" | |
volumes: | |
- "${config_dir}/nzbget/:/config" | |
- "${downloads_dir}:/downloads" | |
deluge: | |
image: lsioarmhf/deluge:latest | |
container_name: deluge | |
network_mode: "host" | |
volumes: | |
- "${config_dir}/deluge/:/config" | |
- "${downloads_dir}/:/downloads" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment