Fix error in linuxserver.yml docker compose file
If I understood correctly the meaning of WGUI_MANAGE_START=true var, which starts the wireguard server in the system when the wireguard-ui container starts, I think it should be set to false, because the wireguard server already starts when the linuxserver/wireguard starts , so another "start" is not necessary
This commit is contained in:
parent
2fdafd34ca
commit
19c031c7ae
|
|
@ -31,7 +31,7 @@ services:
|
||||||
- WGUI_USERNAME=admin
|
- WGUI_USERNAME=admin
|
||||||
- WGUI_PASSWORD=admin
|
- WGUI_PASSWORD=admin
|
||||||
- WG_CONF_TEMPLATE
|
- WG_CONF_TEMPLATE
|
||||||
- WGUI_MANAGE_START=true
|
- WGUI_MANAGE_START=false
|
||||||
- WGUI_MANAGE_RESTART=true
|
- WGUI_MANAGE_RESTART=true
|
||||||
logging:
|
logging:
|
||||||
driver: json-file
|
driver: json-file
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue