Skip to content

Instantly share code, notes, and snippets.

@ostermine
Created January 7, 2024 00:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ostermine/5260abb77320acf51d7b0a2056c86ba4 to your computer and use it in GitHub Desktop.
Save ostermine/5260abb77320acf51d7b0a2056c86ba4 to your computer and use it in GitHub Desktop.
wireguard in docker
version: "2.1"
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/Moscow
- SERVERPORT=51820 #optional
- PEERS=10 #optional
- PEERDNS=auto #optional
- INTERNAL_SUBNET=10.10.10.0 #optional
- ALLOWEDIPS=0.0.0.0/0 #optional
- PERSISTENTKEEPALIVE_PEERS= #optional
- LOG_CONFS=true #optional
volumes:
- ./config:/config
- /lib/modules:/lib/modules #optional
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