mirror of
https://github.com/luigieai/homelab.git
synced 2025-06-07 07:56:37 -03:00
23 lines
No EOL
531 B
YAML
23 lines
No EOL
531 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
wg-easy:
|
|
environment:
|
|
- WG_HOST=home.marioverde.com.br
|
|
# ⚠️ Change this in Portainer configs, see README
|
|
- PASSWORD=foobar123
|
|
image: weejewel/wg-easy
|
|
container_name: wg-easy
|
|
hostname: wg-easy
|
|
volumes:
|
|
- ~/.wg-easy:/etc/wireguard
|
|
ports:
|
|
- "51820:51820/udp"
|
|
- "51821:51821/tcp"
|
|
restart: unless-stopped
|
|
cap_add:
|
|
- NET_ADMIN
|
|
- SYS_MODULE
|
|
sysctls:
|
|
- net.ipv4.ip_forward=1
|
|
- net.ipv4.conf.all.src_valid_mark=1 |