-
-
Notifications
You must be signed in to change notification settings - Fork 347
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
29 lines (28 loc) · 812 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
29 lines (28 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
services:
wireguard:
image: linuxserver/wireguard
container_name: wireguard
restart: unless-stopped
cap_add:
- NET_ADMIN
- SYS_MODULE
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
- SERVERURL=vpn.example.com #optional
- SERVERPORT=51820 #optional
- PEERS=1 #optional
- PEERDNS=auto #optional
- INTERNAL_SUBNET=10.13.13.0 #optional
- ALLOWEDIPS=0.0.0.0/0 #optional
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/wireguard/config:/config
- /usr/src:/usr/src # location of kernel headers
- /lib/modules:/lib/modules
ports:
- 51820:51820/udp # wireguard vpn
expose:
- 51820
sysctls:
- net.ipv4.conf.all.src_valid_mark=1