Skip to content

Instantly share code, notes, and snippets.

@g3rhard
Created August 8, 2020 10:23
Show Gist options
  • Save g3rhard/6b735868b6b9a6f75fee5ea8371f428f to your computer and use it in GitHub Desktop.
Save g3rhard/6b735868b6b9a6f75fee5ea8371f428f to your computer and use it in GitHub Desktop.
Wireguard in Docker via docker-compose
---
version: "2.1"
services:
wireguard:
image: linuxserver/wireguard
container_name: wireguard
cap_add:
- NET_ADMIN
- SYS_MODULE
environment:
- PUID=1000
- PGID=1000
- TZ=UTC
- SERVERURL=INTERNAL_SERVER_IP #optional
- SERVERPORT=51820 #optional
- PEERS=1 #optional
- PEERDNS=auto #optional
- INTERNAL_SUBNET=10.13.13.0 #optional
volumes:
- /var/data/docker/wireguard:/config
- /lib/modules:/lib/modules
ports:
- 51820:51820/udp
sysctls:
- net.ipv4.conf.all.src_valid_mark=1
restart: unless-stopped
networks:
default:
driver: bridge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment