12 lines
260 B
YAML
12 lines
260 B
YAML
|
version: '3.6'
|
||
|
services:
|
||
|
wg-portal:
|
||
|
image: h44z/wg-portal:latest
|
||
|
container_name: wg-portal
|
||
|
restart: unless-stopped
|
||
|
cap_add:
|
||
|
- NET_ADMIN
|
||
|
network_mode: "host"
|
||
|
volumes:
|
||
|
- /etc/wireguard:/etc/wireguard
|
||
|
- ./data:/app/data
|