You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for creating this great Docker. I'm running it on a Raspberry Pi4 aarch64 with docker-compose.yml and I'd like to edit / create files as normal user:
Creating the container results in: filebrowser | 2021/02/04 20:53:30 open /config/filebrowser.db: permission denied
I found a workaround to run the container without user: first as root:root which creates ${VOLUME_DIR}/filebrowser/config/filebrowser.db.
Then sudo chown 1000:1000 -R ${VOLUME_DIR}/filebrowser/config/filebrowser.db and recreate the container with user: 1000:1000.
Then it works.
What could be the problem?
The text was updated successfully, but these errors were encountered:
Thanks for creating this great Docker. I'm running it on a Raspberry Pi4 aarch64 with docker-compose.yml and I'd like to edit / create files as normal user:
Creating the container results in:
filebrowser | 2021/02/04 20:53:30 open /config/filebrowser.db: permission denied
I found a workaround to run the container without
user:
first asroot:root
which creates${VOLUME_DIR}/filebrowser/config/filebrowser.db
.Then
sudo chown 1000:1000 -R ${VOLUME_DIR}/filebrowser/config/filebrowser.db
and recreate the container withuser: 1000:1000
.Then it works.
What could be the problem?
The text was updated successfully, but these errors were encountered: