mirror of
https://github.com/louislam/dockge.git
synced 2026-03-03 02:06:55 -05:00
Single lines in Compose.yaml are edited by dockge unnecessarily #216
Labels
No labels
bug
feature-request
help
help wanted
invalid-format
need-reproduce-steps
question
security
upstream
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/dockge-louislam#216
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @jackspiering on GitHub (Jun 11, 2025).
⚠️ Please verify that this bug has NOT been reported before.
🛡️ Security Policy
Description
Dockge change single lines of a compose.yaml. This is not a problem for how the container works, but it can be annoying that the compose.yaml is tweaked.
👟 Reproduction steps
test: ["CMD", "wget", "--spider", "-q", "http://127.0.0.1:41234/healthz"])
test: ["CMD", "wget", "--spider", "-q", "http://127.0.0.1:41234/healthz"] to test:
- CMD
- wget
- --spider
- -q
- http://127.0.0.1:41234/healthz
👀 Expected behavior
Keep the original yaml contents: test: ["CMD", "wget", "--spider", "-q", "http://127.0.0.1:41234/healthz"])
😓 Actual Behavior
Changes the compose.yaml to:
test:
- CMD
- wget
- --spider
- -q
- http://127.0.0.1:41234/healthz
Dockge Version
1.5.0
💻 Operating System and Arch
Debian GNU/Linux 12 (bookworm) x86_64
🌐 Browser
Arc 137.0.7151.69
🐋 Docker Version
Docker 28.2.2
🟩 NodeJS Version
N/A
📝 Relevant log output
@dMopp commented on GitHub (Oct 25, 2025):
I would not call it a bug, but it might be cool to have an option to turn on/off this behavior.