Pin wireguard version as latest is currently buggy
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Tobias Manske 2022-10-07 09:56:50 +02:00
parent 82b97c625d
commit 3e63db7504
Signed by: tobias
GPG Key ID: E83C743C1FC2F79A

View File

@ -1,8 +1,9 @@
---
version: '3.9'
services:
wireguard:
image: linuxserver/wireguard:latest
image: linuxserver/wireguard:v1.0.20210914-ls81
container_name: wireguard
cap_add:
- NET_ADMIN
@ -22,4 +23,15 @@ services:
- net.ipv4.conf.all.src_valid_mark=1
- net.ipv6.conf.all.disable_ipv6=0
restart: unless-stopped
networks:
- default
- gateway
- internal_services
networks:
gateway:
external: true
internal_services:
name: internal_services
internal: true
...