From bcb6c8b8ac1ed36c844e5ec68adb4cdb785f30f1 Mon Sep 17 00:00:00 2001 From: komodo Date: Mon, 12 May 2025 10:15:29 +0000 Subject: [PATCH] [Komodo] admin: Write Compose File: update compose.yaml --- compose.yaml | 41 +++++++++++++++++++++-------------------- 1 file changed, 21 insertions(+), 20 deletions(-) diff --git a/compose.yaml b/compose.yaml index 8456608..fe75a93 100644 --- a/compose.yaml +++ b/compose.yaml @@ -7,6 +7,27 @@ networks: services: + wireguard: + image: lscr.io/linuxserver/wireguard:latest + container_name: wireguard + cap_add: + - NET_ADMIN + - SYS_MODULE #optional + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/Berlin + volumes: + - /app-config/wireguard/:/config + - /lib/modules:/lib/modules #optional + ports: + - 51820:51820/udp + sysctls: + - net.ipv4.conf.all.src_valid_mark=1 + restart: unless-stopped + networks: + - wireguard + radarr: container_name: radarr environment: @@ -225,23 +246,3 @@ services: networks: - media_network - wireguard: - image: lscr.io/linuxserver/wireguard:latest - container_name: wireguard - cap_add: - - NET_ADMIN - - SYS_MODULE #optional - environment: - - PUID=1000 - - PGID=1000 - - TZ=Europe/Berlin - volumes: - - /app-config/wireguard/:/config - - /lib/modules:/lib/modules #optional - ports: - - 51820:51820/udp - sysctls: - - net.ipv4.conf.all.src_valid_mark=1 - restart: unless-stopped - networks: - - wireguard \ No newline at end of file