wg-easy/docker-compose.yml

35 lines
982 B
YAML
Raw Permalink Normal View History

2021-05-23 21:55:50 +08:00
version: "3.8"
services:
wg-easy:
environment:
# ⚠️ Required:
# Change this to your host's public address
2022-01-29 07:49:21 +08:00
- WG_HOST=raspberrypi.local
2021-05-23 21:55:50 +08:00
# Optional:
# - PASSWORD=foobar123
# - WG_PORT=51820
# - WG_DEFAULT_ADDRESS=10.8.0.x
# - WG_DEFAULT_DNS=1.1.1.1
2021-12-26 21:08:41 +08:00
# - WG_MTU=1420
# - WG_ALLOWED_IPS=192.168.15.0/24, 10.0.1.0/24
# - WG_PRE_UP=echo "Pre Up" > /etc/wireguard/pre-up.txt
# - WG_POST_UP=echo "Post Up" > /etc/wireguard/post-up.txt
# - WG_PRE_DOWN=echo "Pre Down" > /etc/wireguard/pre-down.txt
# - WG_POST_DOWN=echo "Post Down" > /etc/wireguard/post-down.txt
2021-05-23 22:00:29 +08:00
2023-12-18 05:37:34 +08:00
image: ghcr.io/wg-easy/wg-easy
2021-05-23 22:00:29 +08:00
container_name: wg-easy
volumes:
2021-05-23 23:05:24 +08:00
- .:/etc/wireguard
2021-05-23 22:00:29 +08:00
ports:
- "51820:51820/udp"
- "51821:51821/tcp"
restart: unless-stopped
2021-05-23 21:55:50 +08:00
cap_add:
- NET_ADMIN
- SYS_MODULE
sysctls:
2021-05-31 20:21:30 +08:00
- net.ipv4.ip_forward=1
- net.ipv4.conf.all.src_valid_mark=1