From d21dd2f328de5c8f0cddce18397a874364a86625 Mon Sep 17 00:00:00 2001 From: sascha Date: Tue, 12 May 2026 07:27:10 +0200 Subject: [PATCH] =?UTF-8?q?compose.yaml=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- compose.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 compose.yaml diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 0000000..65f7002 --- /dev/null +++ b/compose.yaml @@ -0,0 +1,23 @@ +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 + networks: + - emby_network + sysctls: + - net.ipv4.conf.all.src_valid_mark=1 + restart: unless-stopped +networks: + emby_network: + name: emby_network + external: true \ No newline at end of file