From 1139cef9bdb9df60bdd33a1a97c8c53a2acbd414 Mon Sep 17 00:00:00 2001 From: komodo Date: Thu, 2 Oct 2025 22:29:51 +0200 Subject: [PATCH] [Komodo] admin: Write Stack File: update compose.yaml --- compose.yaml | 114 ++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 91 insertions(+), 23 deletions(-) diff --git a/compose.yaml b/compose.yaml index 093fe83..a6bb713 100644 --- a/compose.yaml +++ b/compose.yaml @@ -3,6 +3,91 @@ networks: name: media_network services: + + radarrFHD: + container_name: radarrFHD + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/Berlin + - CONFIG_DIR=/config/radarrFHD + image: ghcr.io/hotio/radarr:latest + networks: + - media_network + ports: + - 7878:7878 + restart: unless-stopped + volumes: + - /app-config/arr/:/config + - /data:/data + - /usenet:/usenet + + radarrUHD: + container_name: radarrUHD + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/Berlin + - CONFIG_DIR=/config/radarrUHD + image: ghcr.io/hotio/radarr:latest + networks: + - media_network + ports: + - 7879:7878 + restart: unless-stopped + volumes: + - /app-config/arr/:/config + - /data:/data + - /usenet:/usenet + + sonarrFHD: + container_name: sonarrFHD + image: ghcr.io/hotio/sonarr:latest + restart: unless-stopped + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/Berlin + - UMASK=022 + - CONFIG_DIR=/config/sonarrFHD + networks: + - media_network + ports: + - 8889:8989 + volumes: + - /app-config/arr/:/config + - /data:/data + - /usenet:/usenet + + sonarrUHD: + container_name: sonarrUHD + image: ghcr.io/hotio/sonarr:latest + restart: unless-stopped + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/Berlin + - UMASK=022 + - CONFIG_DIR=/config/sonarrUHD + networks: + - media_network + ports: + - 8889:8989 + volumes: + - /app-config/arr/:/config + - /data:/data + - /usenet:/usenet + + + + + + + + + + + radarr: container_name: radarr environment: @@ -14,7 +99,7 @@ services: networks: - media_network ports: - - 7878:7878 + - 7778:7878 restart: unless-stopped volumes: - /app-config:/config @@ -32,7 +117,7 @@ services: networks: - media_network ports: - - 7879:7879 + - 7779:7879 restart: unless-stopped volumes: - /app-config:/config @@ -50,30 +135,13 @@ services: networks: - media_network ports: - - 7880:7880 + - 7780:7880 restart: unless-stopped volumes: - /app-config:/config - /data:/data - /usenet:/usenet - radarrtest: - container_name: radarrtest - environment: - - PUID=1000 - - PGID=1000 - - TZ=Europe/Berlin - - CONFIG_DIR=/config/radarrtest - image: ghcr.io/hotio/radarr:latest - networks: - - media_network - ports: - - 7881:7881 - restart: unless-stopped - volumes: - - /app-config:/config - - /data:/data - - /usenet:/usenet sonarr: container_name: sonarr @@ -88,7 +156,7 @@ services: networks: - media_network ports: - - 8989:8989 + - 8889:8989 volumes: - /app-config:/config - /data:/data @@ -106,7 +174,7 @@ services: networks: - media_network ports: - - 8990:8990 + - 8890:8990 volumes: - /app-config:/config - /data:/data @@ -124,7 +192,7 @@ services: networks: - media_network ports: - - 8991:8991 + - 8891:8991 volumes: - /app-config:/config - /data:/data