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