Last active
August 14, 2025 09:02
-
-
Save AndyIsHereBoi/9440b08c2bf174d6fa8feb170b9b9dd2 to your computer and use it in GitHub Desktop.
arr Stack for Docker
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
services: | |
# VPN | |
gluetun: | |
image: qmcgaw/gluetun | |
container_name: gluetun | |
cap_add: | |
- NET_ADMIN | |
devices: | |
- /dev/net/tun:/dev/net/tun | |
ports: | |
- 6881:6881 # Torrenting | |
- 6881:6881/udp # Torrenting | |
- 6789:6789 # Usenet | |
- 8085:8085 # qBittorrent Web UI | |
- 9696:9696 # Prowlarr Indexer | |
- 5055:5055 # Jellyseerr | |
- 8989:8989 # Sonarr | |
- 7878:7878 # Radarr | |
- 6767:6767 # Bazarr | |
volumes: | |
- ~/Auto-Media-Server/gluetun:/gluetun | |
environment: | |
- VPN_SERVICE_PROVIDER=mullvad | |
- VPN_TYPE=wireguard | |
- WIREGUARD_PRIVATE_KEY=xxxxxxx | |
- WIREGUARD_ADDRESSES=10.66.127.71/32 | |
- TZ=America/Chicago | |
- UPDATER_PERIOD=24h | |
# - LOCAL_NETWORK=10.0.0.0/8 # Updated to allow 10.0.x.x local network access | |
- FIREWALL_OUTBOUND_SUBNETS=10.0.0.0/8 # Updated from LOCAL_NETWORK | |
# DOWNLOADER | |
qbittorrent: | |
image: lscr.io/linuxserver/qbittorrent | |
privileged: true | |
container_name: qbittorrent | |
network_mode: "service:gluetun" | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=America/Chicago | |
- WEBUI_PORT=8085 | |
volumes: | |
- ~/Auto-Media-Server/qbittorrent:/config | |
- ~/Auto-Media-Server/downloads:/downloads | |
depends_on: | |
- gluetun | |
restart: always | |
# DOWNLOADER | |
nzbget: | |
image: lscr.io/linuxserver/nzbget:latest | |
container_name: nzbget | |
network_mode: "service:gluetun" | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=Etc/UTC | |
- NZBGET_USER=nzbget #optional | |
- NZBGET_PASS=tegbzn6789 #optional | |
volumes: | |
- ~/Auto-Media-Server/nzbget:/config # Updated path | |
- ~/Auto-Media-Server/downloads:/downloads # Updated path | |
depends_on: | |
- gluetun | |
restart: always | |
# INDEXER | |
prowlarr: | |
image: ghcr.io/linuxserver/prowlarr:develop | |
container_name: prowlarr | |
network_mode: "service:gluetun" | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=UTC | |
volumes: | |
- ~/Auto-Media-Server/prowlarr/config:/config | |
depends_on: | |
- gluetun | |
restart: unless-stopped | |
# TV | |
sonarr: | |
image: linuxserver/sonarr | |
container_name: sonarr | |
network_mode: "service:gluetun" | |
environment: | |
- PUID=0 | |
- PGID=0 | |
- TZ=UTC | |
volumes: | |
- ~/Auto-Media-Server/sonarr/config:/config | |
- /mnt/nas/Jellyfin/Shows:/tv | |
- ~/Auto-Media-Server/downloads:/downloads | |
depends_on: | |
- gluetun | |
restart: unless-stopped | |
# MOVIES | |
radarr: | |
image: linuxserver/radarr | |
container_name: radarr | |
network_mode: "service:gluetun" | |
environment: | |
- PUID=0 | |
- PGID=0 | |
- TZ=UTC | |
volumes: | |
- ~/Auto-Media-Server/radarr/config:/config | |
- /mnt/nas/Jellyfin/Movies:/movies | |
- ~/Auto-Media-Server/downloads:/downloads | |
depends_on: | |
- gluetun | |
restart: unless-stopped | |
# SUBTITLES | |
bazarr: | |
image: linuxserver/bazarr | |
container_name: bazarr | |
network_mode: "service:gluetun" | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=UTC | |
volumes: | |
- ~/Auto-Media-Server/bazarr/config:/config | |
- /mnt/nas/Jellyfin/Movies:/movies | |
- /mnt/nas/Jellyfin/Shows:/tv | |
depends_on: | |
- gluetun | |
restart: unless-stopped | |
flaresolverr: | |
image: ghcr.io/flaresolverr/flaresolverr:latest | |
container_name: flaresolverr | |
environment: | |
- LOG_LEVEL=${LOG_LEVEL:-info} | |
- LOG_HTML=${LOG_HTML:-false} | |
- CAPTCHA_SOLVER=${CAPTCHA_SOLVER:-none} | |
- TZ=America/Chicago | |
ports: | |
- "${PORT:-8191}:8191" | |
restart: unless-stopped | |
# MEDIA REQUEST MANAGEMENT | |
jellyseerr: | |
image: fallenbagel/jellyseerr:latest | |
container_name: jellyseerr | |
network_mode: "service:gluetun" | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=America/Chicago | |
volumes: | |
- ~/Auto-Media-Server/jellyseerr:/app/config # Updated path to match your structure | |
depends_on: | |
- gluetun | |
restart: unless-stopped | |
# # WATCHES FOR NEW SHOWS (Commented out as in original) | |
# medusa: | |
# image: ghcr.io/linuxserver/medusa | |
# container_name: medusa | |
# environment: | |
# - PUID=1000 | |
# - PGID=1000 | |
# - TZ=UTC | |
# volumes: | |
# - ~/Auto-Media-Server/medusa/config:/config | |
# - ~/Auto-Media-Server/downloads:/downloads | |
# - /mnt/nas/Jellyfin/Shows:/tv | |
# ports: | |
# - 8081:8081 | |
# restart: unless-stopped | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment