mirror of
https://github.com/plankanban/planka.git
synced 2026-02-24 19:08:59 +03:00
[Bug]: Container restarting without any log #769
Reference in New Issue
Block a user
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 @AnthonyLELUYER on GitHub (Jul 29, 2025).
Where is the problem occurring?
I encountered the problem while interacting with the server (Backend)
What browsers are you seeing the problem on?
Firefox
Current behavior
Hello,
I'm trying to use the Docker deployment, here is my docker-compose:
The postgres container is healthy, however the planka container is restarting without any logs, the output of this command is empty:

docker logs planka-planka-1Here is the
docker pscommand:@meltyshev commented on GitHub (Jul 30, 2025):
Hi! Hmm… I have a guess that it might be related to the use of Docker secrets, as it seems to fail before Node.js even starts. I'll try to reproduce this now.
@meltyshev commented on GitHub (Jul 30, 2025):
Yep, I was able to reproduce it. I remembered this comment: https://github.com/plankanban/planka/issues/1222#issuecomment-3014050188 - if there's no newline at the end of each secret file, it fails silently.
For now, you can add an empty newline to the end of your secret files as a workaround. Already working on a fix.
@AnthonyLELUYER commented on GitHub (Jul 30, 2025):
Thanks! The workaround fixed it