homelab/containers/docker-compose.yaml
2023-06-13 19:17:38 -03:00

23 lines
No EOL
549 B
YAML

version: "3.8"
services:
wg-easy:
environment:
# ⚠️ Change the server's hostname (clients will connect to):
- WG_HOST=home.marioverde.com.br
# ⚠️ Change the Web UI Password:
- PASSWORD
image: weejewel/wg-easy
container_name: wg-easy
hostname: wg-easy
volumes:
- ~/.wg-easy:/etc/wireguard
ports:
- "51820:51820/udp"
restart: unless-stopped
cap_add:
- NET_ADMIN
- SYS_MODULE
sysctls:
- net.ipv4.ip_forward=1
- net.ipv4.conf.all.src_valid_mark=1