Created
April 13, 2023 14:46
-
-
Save darkato42/e289b334b5b02bd71c3f020b90ed0bd9 to your computer and use it in GitHub Desktop.
create a wireguard server in docker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.8" | |
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=auto #optional | |
- SERVERPORT=51820 #optional | |
- PEERS=5 #optional | |
- PEERDNS=auto #optional | |
- INTERNAL_SUBNET=10.13.13.0 #optional | |
- ALLOWEDIPS=0.0.0.0/0 #optional | |
- PERSISTENTKEEPALIVE_PEERS= #optional | |
- LOG_CONFS=true #optional | |
volumes: | |
- /wireguard/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