Skip to content

Instantly share code, notes, and snippets.

@ljchuello
Created August 27, 2024 15:20
Show Gist options
  • Save ljchuello/58a1dad4f94de1960f4da7c6339bc3a6 to your computer and use it in GitHub Desktop.
Save ljchuello/58a1dad4f94de1960f4da7c6339bc3a6 to your computer and use it in GitHub Desktop.
Wireguard Docker
version: '3.3'
services:
wireguard:
image: lscr.io/linuxserver/wireguard:latest
container_name: wireguard
cap_add:
- NET_ADMIN
- SYS_MODULE
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- SERVERURL=xxx.xxx.xxx.xxxx
- SERVERPORT=51820
- PEERS=15
- PEERDNS=auto
- INTERNAL_SUBNET=10.13.13.0
volumes:
- /path/to/wireguard/config:/config
ports:
- 51820:51820/udp
sysctls:
- net.ipv4.conf.all.src_valid_mark=1
restart: unless-stopped
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment