2024-06-04 22:49:17 +02:00
|
|
|
services:
|
|
|
|
wireguard-dashboard:
|
2024-06-07 13:25:46 +02:00
|
|
|
image: repo.nerthus.nl/app/wireguard-dashboard:latest
|
2024-06-04 22:49:17 +02:00
|
|
|
restart: unless-stopped
|
|
|
|
container_name: wire-dash
|
|
|
|
environment:
|
2024-06-05 20:27:24 +02:00
|
|
|
#- tz= # <--- Set container timezone, default: Europe/Amsterdam.
|
|
|
|
#- global_dns= # <--- Set global DNS address, default: 1.1.1.1.
|
2024-06-06 16:11:49 +02:00
|
|
|
- enable_wg0=true # <--- If true, wg0 will be started on container startup. default: false.
|
2024-06-06 00:12:11 +02:00
|
|
|
- isolated_peers=false # <--- When set to true, it disallows peers to talk to eachother, setting to false, allows it, default: true.
|
2024-06-05 20:27:24 +02:00
|
|
|
#- public_ip= # <--- Set public IP to ensure the correct one is chosen, defaulting to the IP give by ifconfig.me.
|
2024-06-04 22:49:17 +02:00
|
|
|
ports:
|
|
|
|
- 10086:10086/tcp
|
|
|
|
- 51820:51820/udp
|
|
|
|
volumes:
|
2024-06-06 00:12:11 +02:00
|
|
|
- conf:/etc/wireguard
|
|
|
|
- app:/opt/wireguardashboard/app
|
2024-06-04 22:49:17 +02:00
|
|
|
cap_add:
|
|
|
|
- NET_ADMIN
|
|
|
|
|
|
|
|
volumes:
|
2024-06-06 00:12:11 +02:00
|
|
|
conf:
|
|
|
|
app:
|