From 2dc27cf8fad0176483dbe76bc96072468ec3a25a Mon Sep 17 00:00:00 2001 From: Peter Wood Date: Sat, 19 Oct 2024 01:59:27 +0000 Subject: [PATCH] added cloudflare_default to each service in compose.yml --- media/docker-compose.yml | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/media/docker-compose.yml b/media/docker-compose.yml index d92e19f..5ed579f 100644 --- a/media/docker-compose.yml +++ b/media/docker-compose.yml @@ -1,7 +1,6 @@ services: gluetun: image: qmcgaw/gluetun:latest - pull_policy: always 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 cap_add: @@ -27,7 +26,6 @@ services: restart: unless-stopped sabnzbd: image: lscr.io/linuxserver/sabnzbd:latest - pull_policy: always container_name: sabnzbd environment: - PUID=1000 @@ -44,7 +42,6 @@ services: sonarr: image: lscr.io/linuxserver/sonarr:latest container_name: sonarr - pull_policy: always environment: - PUID=1000 - PGID=1000 @@ -58,11 +55,12 @@ services: - /data/usenet/downloads:/downloads ports: - 8989:8989 + networks: + - cloudflare_default restart: unless-stopped radarr: image: lscr.io/linuxserver/radarr:latest container_name: radarr - pull_policy: always environment: - PUID=1000 - PGID=1000 @@ -76,11 +74,12 @@ services: - /data/usenet/downloads:/downloads ports: - 7878:7878 + networks: + - cloudflare_default restart: unless-stopped prowlarr: image: lscr.io/linuxserver/prowlarr:latest container_name: prowlarr - pull_policy: always environment: - PUID=1000 - PGID=1000 @@ -89,11 +88,12 @@ services: - /docker/config/prowlarr:/config ports: - 9696:9696 + networks: + - cloudflare_default restart: unless-stopped tautulli: image: lscr.io/linuxserver/tautulli:latest container_name: tautulli - pull_policy: always environment: - PUID=1000 - PGID=1000 @@ -102,8 +102,14 @@ services: - tautulli:/config ports: - 8181:8181 + networks: + - cloudflare_default restart: unless-stopped volumes: gluetun_data: null sabnzbd_data: null - tautulli: null \ No newline at end of file + tautulli: null + +networks: + cloudflare_default: + external: true \ No newline at end of file