Add debug flag to Wings command in Docker configuration

This commit is contained in:
Root User 2026-03-23 00:51:31 +01:00
parent b397a85336
commit 617e3a0e45
Signed by: root
GPG key ID: 087F0A95E5766D72
2 changed files with 2 additions and 2 deletions

View file

@ -148,7 +148,7 @@
"8080:8080/tcp" "8080:8080/tcp"
"2022:2022/tcp" "2022:2022/tcp"
]; ];
cmd = ["wings" "--ignore-certificate-errors"]; cmd = ["wings" "--ignore-certificate-errors" "--debug"];
log-driver = "journald"; log-driver = "journald";
extraOptions = [ extraOptions = [
"--network-alias=wings" "--network-alias=wings"

View file

@ -118,7 +118,7 @@ services:
- "8080:8080" - "8080:8080"
- "2022:2022" - "2022:2022"
stdin_open: true stdin_open: true
command: ["wings", "--ignore-certificate-errors"] command: ["wings", "--ignore-certificate-errors", "--debug"]
tty: true tty: true
environment: environment:
TZ: Europe/Copenhagen TZ: Europe/Copenhagen