-
-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SQLiteError: no such table: user #133
Comments
Hello @tehniemer! Could you try to set up the app again using the Also, make sure to remove existing Docker volume used by Grimoire and allow it to create a new one. |
Sure thing, after removing the existing mountpoint and changing to the
Maybe a permissions issue with the bind mount? What |
I've tried to reproduce your issue, but unsuccessfully. For the permissions used, please check this line in the Dockerfile: https://github.com/goniszewski/grimoire/blob/main/Dockerfile#L11 |
same issue here |
same, doesn't work for me either |
Something fun that I noticed is that running
Just doing |
I've found an interesting thing. Using a directory mount causes the error. # This doesn't work
volumes:
- ./data:/app/data Removing # This works
# volumes
# -./data:/app/data # This works
volumes:
grimoire_data:/app/data |
That usually means it's a directory permission issue. If the container doesn't run as root or chown the directory after creation this tends to happen. I've removed this from my stack so I'm not able to test this. |
I may have introduced some unnecessary permission changes in the latest update to |
Best would be to make use of |
Possible fix for this issue is now being released under the Please let me know if it's still not working! |
Followed the docker install instructions and was presented with the following error when trying to access the service.
Here's my compose snippet
The text was updated successfully, but these errors were encountered: