mirror of
https://github.com/plankanban/planka.git
synced 2026-07-16 05:53:57 +03:00
[Bug]: DB connection failure - new deployment #826
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 @alaricljs on GitHub (Sep 30, 2025).
Where is the problem occurring?
Container init
What browsers are you seeing the problem on?
No response
Current behavior
The container fails to start:
Hardcoding the password makes the container spin up with zero log output.
Desired behavior
Container to start.
Steps to reproduce
Basically stock compose file w/ env (per the example in the file):
- DATABASE_PASSWD__FILE=/run/secrets/planka_db_password
- DATABASE_URL=postgresql://planka:$${DATABASE_PASSWORD}@postgres/planka
Stand it up in Docker Swarm mode:
docker stack deploy --prune -d -c docker-compose.yml $(basename $(pwd))Other information
The password is alphanumeric because it's in a URI, so not breaking URI encoding or shell behavior.
@alaricljs commented on GitHub (Sep 30, 2025):
Erk, found it... DATABASE_PASSWD__FILE where'd the OR go? I'll never tell.