WGDashboard/docker/compose.yaml

24 lines
817 B
YAML
Raw Normal View History

2024-11-07 11:25:05 +01:00
services:
wireguard-dashboard:
2025-02-06 10:55:07 +01:00
image: donaldzou/wgdashboard:latest
2024-11-07 11:25:05 +01:00
restart: unless-stopped
container_name: wgdashboard
2025-02-06 10:55:07 +01:00
#environment:
#- tz= # <--- Set container timezone, default: Europe/Amsterdam.
#- global_dns= # <--- Set global DNS address, default: 1.1.1.1.
2024-11-07 11:25:05 +01:00
#- isolate= # <--- Set the interfaces that will disallow peer communication, default: 'none'.
#- public_ip= # <--- Set public IP to ensure the correct one is chosen, defaulting to the IP give by ifconfig.me.
2025-02-06 10:55:07 +01:00
#- wgd_port= # <--- Set the port WGDashboard will use for its web-server.
2024-11-07 11:25:05 +01:00
ports:
2025-02-06 10:55:07 +01:00
- 10086:10086/tcp
2024-11-07 11:25:05 +01:00
- 51820:51820/udp
volumes:
- conf:/etc/wireguard
- data:/data
cap_add:
- NET_ADMIN
volumes:
conf:
data: