Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Compose file for the *arr stack. Configuration files are stored
- # in a docker folder mounted in root. Change to bind mounts if needed.
- # All containers are ran with user and group ids of the main user and
- # share to aviod permissions issues of downloaded files, please refer
- # the read me file for more information.
- version: '3.9'
- services:
- gluetun:
- image: qmcgaw/gluetun
- container_name: gluetun
- cap_add:
- - NET_ADMIN
- devices:
- - /dev/net/tun:/dev/net/tun
- ports:
- - 8080:8080 # qbittorrent web interface
- - 6881:6881 # qbittorrent torrent port
- - 6789:6789 # nzbget
- - 9696:9696 # prowlarr
- - 7878:7878 # radarr
- volumes:
- - /docker/gluetun:/gluetun
- environment:
- - VPN_SERVICE_PROVIDER=private internet access
- - OPENVPN_USER=p6415635
- - OPENVPN_PASSWORD=jRFCygL6de
- - SERVER_REGIONS=US Texas
- qbittorrent:
- image: lscr.io/linuxserver/qbittorrent:latest
- container_name: qbittorrent
- restart: unless-stopped
- labels:
- - deunhealth.restart.on.unhealthy= "true"
- environment:
- - PUID=1000
- - PGID=1000
- - TZ=America/Chicago
- - WEBUI_PORT=8080
- - TORRENTING_PORT=6881
- volumes:
- - /docker/qbittorrent:/config
- - /home/apollo/data:/data
- network_mode: service:gluetun
- healthcheck:
- test: ping -c 1 www.google.com || exit 1
- interval: 60s
- retries: 3
- start_period: 20s
- timeout: 10s
- prowlarr:
- image: lscr.io/linuxserver/prowlarr:latest
- container_name: prowlarr
- environment:
- - PUID=1000
- - PGID=1000
- - TZ=America/Los_Angeles
- volumes:
- - /etc/localtime:/etc/localtime:ro
- - /docker/prowlarr:/config
- restart: unless-stopped
- network_mode: service:gluetun
- sonarr:
- image: lscr.io/linuxserver/sonarr:latest
- container_name: sonarr
- restart: unless-stopped
- environment:
- - PUID=1000
- - PGID=1000
- - TZ=America/Los_Angeles
- volumes:
- - /etc/localtime:/etc/localtime:ro
- - /docker/sonarr:/config
- - /home/apollo/data:/data
- ports:
- - 8989:8989
- radarr:
- image: lscr.io/linuxserver/radarr:latest
- container_name: radarr
- restart: unless-stopped
- environment:
- - PUID=1000
- - PGID=1000
- - TZ=America/Los_Angeles
- volumes:
- - /etc/localtime:/etc/localtime:ro
- - /docker/radarr:/config
- - /home/apollo/data:/data
- network_mode: service:gluetun
- lidarr:
- container_name: lidarr
- image: lscr.io/linuxserver/lidarr:latest
- restart: unless-stopped
- volumes:
- - /etc/localtime:/etc/localtime:ro
- - /docker/lidarr:/config
- - /home/apollo/data:/data
- environment:
- - PUID=1000
- - PGID=1000
- - TZ=America/Los_Angeles
- ports:
- - 8686:8686
- bazarr:
- image: lscr.io/linuxserver/bazarr:latest
- container_name: bazarr
- restart: unless-stopped
- environment:
- - PUID=1000
- - PGID=1000
- - TZ=America/Los_Angeles
- volumes:
- - /etc/localtime:/etc/localtime:ro
- - /docker/bazarr:/config
- - /home/apollo/data:/data
- ports:
- - 6767:6767
- readarr:
- image: lscr.io/linuxserver/readarr:develop
- container_name: readarr
- environment:
- - PUID=1000
- - PGID=1000
- - TZ=America/Los_Angeles
- volumes:
- - /etc/localtime:/etc/localtime:ro
- - /docker/readarr:/config
- - /home/apollo/data:/data
- ports:
- - 8787:8787
- restart: unless-stopped
Add Comment
Please, Sign In to add comment