mirror of
https://github.com/plankanban/planka.git
synced 2026-02-25 03:14:50 +03:00
docker implement image upload permission issue #344
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 @Kellermaan on GitHub (Aug 4, 2023).
Hi,
Really like your app. Thanks a lot.
I'm using the latest version of docker implement of this app.
But I can't upload the image.
the log show
EACCES: permission denied, mkdir 'public/project-background-images/8637a333-8dcc-4e09-8684-ebca4be869dd'
Not sure how to fix it. thanks.
@meltyshev commented on GitHub (Aug 4, 2023):
Hi! I've found similar issues: https://github.com/plankanban/planka/issues/374 and https://github.com/plankanban/planka/issues/382.
We need more information to find the problem. Have you changed
docker-compose.yml?@filcuk commented on GitHub (Aug 12, 2023):
As per the referenced posts, if you use bind mount instead of volumes in the default compose, you need to run
chown -R 1000:1000 your-app-dir/plankaI think this would be a valuable addition to the docs!
@Kellermaan commented on GitHub (Aug 13, 2023):
Yes, that's the issue. fixed it, thanks a lot!