mirror of
https://github.com/w0rng/amnezia-wg-easy.git
synced 2025-04-25 21:00:21 +03:00
fixup: docker-compose.dev.yml (#1236)
Improving compose file for dev. Some variables are missed which lead to an error. Fixes: #1234
This commit is contained in:
commit
1607fd1562
1 changed files with 10 additions and 2 deletions
|
@ -1,9 +1,17 @@
|
||||||
services:
|
services:
|
||||||
wg-easy:
|
wg-easy:
|
||||||
image: wg-easy
|
build:
|
||||||
|
dockerfile: ./Dockerfile
|
||||||
command: npm run serve
|
command: npm run serve
|
||||||
volumes:
|
volumes:
|
||||||
- ./src/:/app/
|
- ./src/:/app/
|
||||||
|
# - ./data/:/etc/wireguard
|
||||||
|
ports:
|
||||||
|
- "51820:51820/udp"
|
||||||
|
- "51821:51821/tcp"
|
||||||
|
cap_add:
|
||||||
|
- NET_ADMIN
|
||||||
|
- SYS_MODULE
|
||||||
environment:
|
environment:
|
||||||
# - PASSWORD_HASH=p
|
# - PASSWORD=p
|
||||||
- WG_HOST=192.168.1.233
|
- WG_HOST=192.168.1.233
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue