added cloudflare_default to each service in compose.yml

This commit is contained in:
Peter Wood
2024-10-19 01:59:27 +00:00
parent 1c0e653f7a
commit 2dc27cf8fa

View File

@@ -1,7 +1,6 @@
services: services:
gluetun: gluetun:
image: qmcgaw/gluetun:latest image: qmcgaw/gluetun:latest
pull_policy: always
container_name: gluetun container_name: gluetun
# line above must be uncommented to allow external containers to connect. See https://github.com/qdm12/gluetun/wiki/Connect-a-container-to-gluetun#external-container-to-gluetun # line above must be uncommented to allow external containers to connect. See https://github.com/qdm12/gluetun/wiki/Connect-a-container-to-gluetun#external-container-to-gluetun
cap_add: cap_add:
@@ -27,7 +26,6 @@ services:
restart: unless-stopped restart: unless-stopped
sabnzbd: sabnzbd:
image: lscr.io/linuxserver/sabnzbd:latest image: lscr.io/linuxserver/sabnzbd:latest
pull_policy: always
container_name: sabnzbd container_name: sabnzbd
environment: environment:
- PUID=1000 - PUID=1000
@@ -44,7 +42,6 @@ services:
sonarr: sonarr:
image: lscr.io/linuxserver/sonarr:latest image: lscr.io/linuxserver/sonarr:latest
container_name: sonarr container_name: sonarr
pull_policy: always
environment: environment:
- PUID=1000 - PUID=1000
- PGID=1000 - PGID=1000
@@ -58,11 +55,12 @@ services:
- /data/usenet/downloads:/downloads - /data/usenet/downloads:/downloads
ports: ports:
- 8989:8989 - 8989:8989
networks:
- cloudflare_default
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
pull_policy: always
environment: environment:
- PUID=1000 - PUID=1000
- PGID=1000 - PGID=1000
@@ -76,11 +74,12 @@ services:
- /data/usenet/downloads:/downloads - /data/usenet/downloads:/downloads
ports: ports:
- 7878:7878 - 7878:7878
networks:
- cloudflare_default
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
pull_policy: always
environment: environment:
- PUID=1000 - PUID=1000
- PGID=1000 - PGID=1000
@@ -89,11 +88,12 @@ services:
- /docker/config/prowlarr:/config - /docker/config/prowlarr:/config
ports: ports:
- 9696:9696 - 9696:9696
networks:
- cloudflare_default
restart: unless-stopped restart: unless-stopped
tautulli: tautulli:
image: lscr.io/linuxserver/tautulli:latest image: lscr.io/linuxserver/tautulli:latest
container_name: tautulli container_name: tautulli
pull_policy: always
environment: environment:
- PUID=1000 - PUID=1000
- PGID=1000 - PGID=1000
@@ -102,8 +102,14 @@ services:
- tautulli:/config - tautulli:/config
ports: ports:
- 8181:8181 - 8181:8181
networks:
- cloudflare_default
restart: unless-stopped restart: unless-stopped
volumes: volumes:
gluetun_data: null gluetun_data: null
sabnzbd_data: null sabnzbd_data: null
tautulli: null tautulli: null
networks:
cloudflare_default:
external: true