Last active
September 5, 2021 14:19
-
-
Save rssnyder/8efc7c9a895fd30aa3b6c6700588f36e to your computer and use it in GitHub Desktop.
plex resources
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: "3" | |
services: | |
plex: | |
image: ghcr.io/linuxserver/plex | |
container_name: plex | |
network_mode: host | |
restart: unless-stopped | |
environment: | |
- PUID=65534 | |
- PGID=1001 | |
- VERSION=docker | |
volumes: | |
- /home/plex/appdata/plex:/config | |
- /mnt/freezer/media:/media | |
qbittorrentvpn: | |
image: binhex/arch-qbittorrentvpn | |
container_name: qbittorrentvpn | |
restart: unless-stopped | |
cap_add: | |
- NET_ADMIN | |
volumes: | |
- /mnt/freezer/media/downloads:/downloads | |
- /mnt/freezer/media/movies:/movies | |
- /mnt/freezer/media/tv:/tv | |
- /home/plex/appdata/qbittorrentvpn:/config | |
- /etc/localtime:/etc/localtime:ro | |
ports: | |
- "6881:6881" | |
- "6881:6881/udp" | |
- "7001:7001" | |
- "8118:8118" | |
environment: | |
- VPN_ENABLED=yes | |
- VPN_USER=<redacted> | |
- VPN_PASS=<redacted> | |
- VPN_PROV=pia | |
- VPN_CLIENT=openvpn | |
- STRICT_PORT_FORWARD=yes | |
- ENABLE_PRIVOXY=yes | |
- LAN_NETWORK=192.168.0.0/24 | |
- NAME_SERVERS=209.222.18.222,84.200.69.80,37.235.1.174,1.1.1.1,209.222.18.218,37.235.1.177,84.200.70.40,1.0.0.1 | |
- WEBUI_PORT=7001 | |
- UMASK=000 | |
- PUID=65534 | |
- PGID=1001 | |
sonarr: | |
image: ghcr.io/linuxserver/sonarr | |
container_name: sonarr | |
restart: unless-stopped | |
environment: | |
- PUID=65534 | |
- PGID=1001 | |
- TZ=America/Chicago | |
volumes: | |
- /home/plex/appdata/sonarr:/config | |
- /mnt/freezer/media/tv:/tv | |
- /mnt/freezer/media/downloads:/downloads | |
ports: | |
- 7002:8989 | |
radarr: | |
image: ghcr.io/linuxserver/radarr | |
container_name: radarr | |
restart: unless-stopped | |
environment: | |
- PUID=65534 | |
- PGID=1001 | |
- TZ=America/Chicago | |
volumes: | |
- /home/plex/appdata/radarr:/config | |
- /mnt/freezer/media/movies:/movies | |
- /mnt/freezer/media/downloads:/downloads | |
ports: | |
- 7003:7878 | |
jackett: | |
image: ghcr.io/linuxserver/jackett | |
container_name: jackett | |
restart: unless-stopped | |
environment: | |
- PUID=65534 | |
- PGID=1001 | |
- TZ=America/Chicago | |
volumes: | |
- /home/plex/appdata/jackett:/config | |
- /mnt/freezer/media/downloads:/downloads | |
ports: | |
- 7004:9117 | |
deluge: | |
image: binhex/arch-delugevpn:1.3.15_18_ge050905b2-1-04 | |
container_name: deluge | |
environment: | |
- PUID=65534 | |
- PGID=1001 | |
- TZ=America/Chicago | |
- VPN_ENABLED=no | |
volumes: | |
- /home/plex/appdata/deluge:/config | |
- /mnt/freezer/media/books:/downloads | |
ports: | |
- "8112:8112" | |
- "8117:8118" | |
- "58846:58846" | |
- "58946:58946" | |
restart: unless-stopped |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment