2024-06-04 22:49:17 +02:00
|
|
|
services:
|
|
|
|
wireguard-dashboard:
|
2024-10-03 14:45:24 +02:00
|
|
|
image: test:latest
|
2024-06-04 22:49:17 +02:00
|
|
|
restart: unless-stopped
|
2024-08-22 20:38:29 +02:00
|
|
|
container_name: wgdashboard
|
2024-06-04 22:49:17 +02:00
|
|
|
environment:
|
2024-06-05 20:27:24 +02:00
|
|
|
#- tz= # <--- Set container timezone, default: Europe/Amsterdam.
|
2024-08-26 23:16:09 +02:00
|
|
|
- global_dns=9.9.9.9 # <--- Set global DNS address, default: 1.1.1.1.
|
2024-08-22 20:38:29 +02:00
|
|
|
- enable=wg0 # <--- Set the interfaces that will be enabled on startup, default: none. The option "off" is also allowed.
|
|
|
|
- isolate=wg0 # <--- When set to true, it disallows peers to talk to eachother, setting to false, allows it, default: true.
|
2024-08-27 09:26:19 +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
|
2024-08-22 20:38:29 +02:00
|
|
|
- 51820:51820/udp
|
2024-10-03 15:26:30 +02:00
|
|
|
volumes: # Can be customized to only the /opt/wireguarddashboard/src/db folder with the /opt/wireguarddashboard/src/wg-dashboard.ini file.
|
2024-08-27 09:26:19 +02:00
|
|
|
- ./app:/opt/wireguarddashboard
|
|
|
|
- ./conf:/etc/wireguard
|
2024-06-04 22:49:17 +02:00
|
|
|
cap_add:
|
|
|
|
- NET_ADMIN
|
|
|
|
|
|
|
|
volumes:
|
2024-06-06 00:12:11 +02:00
|
|
|
app:
|
2024-08-22 20:38:29 +02:00
|
|
|
conf:
|