Update docker-compose.yml
This commit is contained in:
parent
c0dbc4ed8d
commit
79268e74fc
@ -1,3 +1,10 @@
|
|||||||
|
networks:
|
||||||
|
servarrnetwork:
|
||||||
|
name: servarrnetwork
|
||||||
|
ipam:
|
||||||
|
config:
|
||||||
|
- subnet: 172.39.0.0/24
|
||||||
|
|
||||||
services:
|
services:
|
||||||
gluetun:
|
gluetun:
|
||||||
image: qmcgaw/gluetun
|
image: qmcgaw/gluetun
|
||||||
@ -8,17 +15,23 @@ services:
|
|||||||
- NET_ADMIN
|
- NET_ADMIN
|
||||||
devices:
|
devices:
|
||||||
- /dev/net/tun:/dev/net/tun
|
- /dev/net/tun:/dev/net/tun
|
||||||
|
networks:
|
||||||
|
servarrnetwork:
|
||||||
|
ipv4_address: 172.39.0.2
|
||||||
ports:
|
ports:
|
||||||
- 6881:6881
|
- 6881:6881
|
||||||
- 6881:6881/udp
|
- 6881:6881/udp
|
||||||
- 8085:8085 # qbittorrent
|
- 8085:8085 # qbittorrent web ui
|
||||||
- 9117:9117 # Jackett
|
- 6881:6881 # qbittorrent torrent port
|
||||||
- 8989:8989 # Sonarr
|
- 6789:6789 # nzbget
|
||||||
- 8686:8686 # Lidarr
|
|
||||||
- 7878:7878 # Radarr
|
|
||||||
- 9696:9696 # Prowlarr
|
- 9696:9696 # Prowlarr
|
||||||
volumes:
|
volumes:
|
||||||
- /home/hotstovejer/docker/arr-stack/gluetun:/gluetun
|
- ./gluetun:/gluetun
|
||||||
|
healthcheck:
|
||||||
|
test: ping -c 1 www.google.com || exit 1
|
||||||
|
interval: 20s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 5
|
||||||
environment:
|
environment:
|
||||||
# See https://github.com/qdm12/gluetun-wiki/tree/main/setup#setup
|
# See https://github.com/qdm12/gluetun-wiki/tree/main/setup#setup
|
||||||
- VPN_SERVICE_PROVIDER=private internet access
|
- VPN_SERVICE_PROVIDER=private internet access
|
||||||
@ -40,86 +53,192 @@ services:
|
|||||||
qbittorrent:
|
qbittorrent:
|
||||||
image: lscr.io/linuxserver/qbittorrent
|
image: lscr.io/linuxserver/qbittorrent
|
||||||
container_name: qbittorrent
|
container_name: qbittorrent
|
||||||
network_mode: "service:gluetun"
|
network_mode: service:gluetun
|
||||||
environment:
|
environment:
|
||||||
- PUID=1000
|
- PUID=1000
|
||||||
- PGID=1000
|
- PGID=1000
|
||||||
- TZ=America/Chicago
|
- TZ=America/Chicago
|
||||||
- WEBUI_PORT=8085
|
- WEBUI_PORT=8085
|
||||||
volumes:
|
volumes:
|
||||||
- /home/hotstovejer/docker/arr-stack/qbittorrent:/config
|
- ./qbittorrent:/config
|
||||||
- /home/hotstovejer/docker/arr-stack/qbittorrent/downloads:/downloads
|
- /data:/data
|
||||||
depends_on:
|
depends_on:
|
||||||
gluetun:
|
gluetun:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
restart: true
|
restart: true
|
||||||
restart: always
|
restart: unless-stopped
|
||||||
|
healthcheck:
|
||||||
|
test: ping -c 1 www.google.com || exit 1
|
||||||
|
interval: 60s
|
||||||
|
retries: 3
|
||||||
|
start_period: 20s
|
||||||
|
timeout: 10s
|
||||||
|
|
||||||
jackett:
|
deunhealth:
|
||||||
image: lscr.io/linuxserver/jackett:latest
|
image: qmcgaw/deunhealth
|
||||||
container_name: jackett
|
container_name: deunhealth
|
||||||
network_mode: "service:gluetun"
|
network_mode: "none"
|
||||||
|
environment:
|
||||||
|
- LOG_LEVEL=info
|
||||||
|
- HEALTH_SERVER_ADDRESS=127.0.0.1:9999
|
||||||
|
- TZ=America/Chicago
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
|
||||||
|
nzbget:
|
||||||
|
image: lscr.io/linuxserver/nzbget:latest
|
||||||
|
container_name: nzbget
|
||||||
environment:
|
environment:
|
||||||
- PUID=1000
|
- PUID=1000
|
||||||
- PGID=1000
|
- PGID=1000
|
||||||
- TZ=America/Chicago
|
- TZ=America/Chicago
|
||||||
- AUTO_UPDATE=true #optional
|
|
||||||
- RUN_OPTS= #optional
|
|
||||||
volumes:
|
volumes:
|
||||||
- /home/hotstovejer/docker/arr-stack/jackett/data:/config
|
- /etc/localtime:/etc/localtime:ro
|
||||||
- /home/hotstovejer/docker/arr-stack/jackett/blackhole:/downloads
|
- ./nzbget:/config
|
||||||
|
- /data:/data
|
||||||
|
depends_on:
|
||||||
|
gluetun:
|
||||||
|
condition: service_healthy
|
||||||
|
restart: true
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
network_mode: service:gluetun
|
||||||
|
|
||||||
|
prowlarr:
|
||||||
|
image: lscr.io/linuxserver/prowlarr:latest
|
||||||
|
container_name: prowlarr
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=America/Chicago
|
||||||
|
volumes:
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
- ./prowlarr:/config
|
||||||
|
restart: unless-stopped
|
||||||
|
depends_on:
|
||||||
|
gluetun:
|
||||||
|
condition: service_healthy
|
||||||
|
restart: true
|
||||||
|
network_mode: service:gluetun
|
||||||
|
|
||||||
sonarr:
|
sonarr:
|
||||||
image: lscr.io/linuxserver/sonarr:latest
|
image: lscr.io/linuxserver/sonarr:latest
|
||||||
container_name: sonarr
|
container_name: sonarr
|
||||||
network_mode: "service:gluetun"
|
|
||||||
environment:
|
environment:
|
||||||
- PUID=1000
|
- PUID=1000
|
||||||
- PGID=1000
|
- PGID=1000
|
||||||
- TZ=America/Chicago
|
- TZ=America/Chicago
|
||||||
volumes:
|
volumes:
|
||||||
- /home/hotstovejer/docker/arr-stack/sonarr/data:/config
|
- /etc/localtime:/etc/localtime:ro
|
||||||
- /home/hotstovejer/docker/arr-stack/sonarr/tvseries:/tv #optional
|
- ./sonarr:/config
|
||||||
- /home/hotstovejer/docker/arr-stack/sonarr/downloadclient-downloads:/downloads #optional
|
- /data:/data
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- 8989:8989
|
||||||
|
networks:
|
||||||
|
servarrnetwork:
|
||||||
|
ipv4_address: 172.39.0.3
|
||||||
|
|
||||||
lidarr:
|
lidarr:
|
||||||
image: lscr.io/linuxserver/lidarr:latest
|
image: lscr.io/linuxserver/lidarr:latest
|
||||||
container_name: lidarr
|
container_name: lidarr
|
||||||
network_mode: "service:gluetun"
|
|
||||||
environment:
|
environment:
|
||||||
- PUID=1000
|
- PUID=1000
|
||||||
- PGID=1000
|
- PGID=1000
|
||||||
- TZ=America/Chicago
|
- TZ=America/Chicago
|
||||||
volumes:
|
volumes:
|
||||||
- /home/hotstovejer/docker/arr-stack/lidarr/config:/config
|
- /etc/localtime:/etc/localtime:ro
|
||||||
- /home/hotstovejer/docker/arr-stack/lidarr/music:/music #optional
|
- ./lidarr:/config
|
||||||
- /home/hotstovejer/docker/arr-stack/lidarr/downloads:/downloads #optional
|
- /data:/data
|
||||||
|
ports:
|
||||||
|
- 8686:8686
|
||||||
|
networks:
|
||||||
|
servarrnetwork:
|
||||||
|
ipv4_address: 172.39.0.5
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
radarr:
|
radarr:
|
||||||
image: lscr.io/linuxserver/radarr:latest
|
image: lscr.io/linuxserver/radarr:latest
|
||||||
container_name: radarr
|
container_name: radarr
|
||||||
network_mode: "service:gluetun"
|
|
||||||
environment:
|
environment:
|
||||||
- PUID=1000
|
- PUID=1000
|
||||||
- PGID=1000
|
- PGID=1000
|
||||||
- TZ=America/Chicago
|
- TZ=America/Chicago
|
||||||
volumes:
|
volumes:
|
||||||
- /home/hotstovejer/docker/arr-stack/radarr/data:/config
|
- /etc/localtime:/etc/localtime:ro
|
||||||
- /home/hotstovejer/docker/arr-stack/movies:/movies #optional
|
- ./radarr:/config
|
||||||
- /home/hotstovejer/docker/arr-stack/download-client-downloads:/downloads #optional
|
- /data:/data
|
||||||
|
ports:
|
||||||
|
- 7878:7878
|
||||||
|
networks:
|
||||||
|
servarrnetwork:
|
||||||
|
ipv4_address: 172.39.0.4
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
prowlarr:
|
prowlarr:
|
||||||
image: lscr.io/linuxserver/prowlarr:latest
|
image: lscr.io/linuxserver/prowlarr:latest
|
||||||
container_name: prowlarr
|
container_name: prowlarr
|
||||||
network_mode: "service:gluetun"
|
|
||||||
environment:
|
environment:
|
||||||
- PUID=1000
|
- PUID=1000
|
||||||
- PGID=1000
|
- PGID=1000
|
||||||
- TZ=America/Chicago
|
- TZ=America/Chicago
|
||||||
volumes:
|
volumes:
|
||||||
- /home/hotstovejer/docker/arr-stack/prowlarr/data:/config
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
- ./prowlarr:/config
|
||||||
|
restart: unless-stopped
|
||||||
|
depends_on:
|
||||||
|
gluetun:
|
||||||
|
condition: service_healthy
|
||||||
|
restart: true
|
||||||
|
network_mode: service:gluetun
|
||||||
|
|
||||||
|
bazarr:
|
||||||
|
image: lscr.io/linuxserver/bazarr:latest
|
||||||
|
container_name: bazarr
|
||||||
|
restart: unless-stopped
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=America/Chicago
|
||||||
|
volumes:
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
- ./bazarr:/config
|
||||||
|
- /data:/data
|
||||||
|
ports:
|
||||||
|
- 6767:6767
|
||||||
|
networks:
|
||||||
|
servarrnetwork:
|
||||||
|
ipv4_address: 172.39.0.6
|
||||||
|
|
||||||
|
|
||||||
|
ytdl-sub:
|
||||||
|
image: ghcr.io/jmbannon/ytdl-sub:latest
|
||||||
|
container_name: ytdl-sub
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=America/Chicago
|
||||||
|
- DOCKER_MODS=linuxserver/mods:universal-cron
|
||||||
|
volumes:
|
||||||
|
- ./ytdl-sub:/config
|
||||||
|
- /data/youtube:/youtube
|
||||||
|
networks:
|
||||||
|
servarrnetwork:
|
||||||
|
ipv4_address: 172.39.0.8
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
jellyseerr:
|
||||||
|
container_name: jellyseerr
|
||||||
|
image: fallenbagel/jellyseerr:latest
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=America/Chicago
|
||||||
|
volumes:
|
||||||
|
- ./jellyseerr:/app/config
|
||||||
|
ports:
|
||||||
|
- 5055:5055
|
||||||
|
networks:
|
||||||
|
servarrnetwork:
|
||||||
|
ipv4_address: 172.39.0.9
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
Loading…
Reference in New Issue
Block a user