mirror of
https://github.com/plankanban/planka.git
synced 2026-02-05 00:39:58 +03:00
[Bug]: error: role "planka" does not exist #770
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 30, 2025).
Where is the problem occurring?
None
What browsers are you seeing the problem on?
No response
Current behavior
Hello,
When the container planka is starting, I receive this error:
Is it an OIDC role issue or something on the database?
Here is my docker-compose:
Desired behavior
No response
Steps to reproduce
I followed the documentation here: https://docs.planka.cloud/docs/installation/docker/production-version
I :
docker-compose up -dOther information
No response
@meltyshev commented on GitHub (Jul 30, 2025):
It seems like your
DATABASE_URLdoesn't match thepostgresservice configuration. It should probably be:Also, if you're providing the database password using
DATABASE_PASSWORD__FILE, it looks like it should also be configured for thepostgresservice like this:So, in the end, the setup might look something like this (I haven't tested it):
@AnthonyLELUYER commented on GitHub (Aug 21, 2025):
That was it, thanks!