-
Notifications
You must be signed in to change notification settings - Fork 14
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: unable to open database file #8
Comments
Yes chown is what I did as well, I think you don't need recursive but it doesn't hurt. I will check if it can be done in the dockerfile in some way |
Thanks for the answer! I wrote an article/tutorial) in french about your app. |
Wow thank you! How did you find this app? |
Good question Monsieur, I go to this page: https://github.com/topics/self-hosted I sort by "recently updated" and I try to find the rare gem that will serve as the basis for an article. If you want to show your app, come back to my site at midnight. Have a nice day! I wish you good luck with your (amazing) app! |
Very nice! Just so you know the first account can be created even if registration is disabled, I should probably clarify that:) I will add the link to the readme |
Will close this issue since it doen't seem fixable unfortunately, or at least I didn't find anything |
Aaah, ok, sorry, I edit my article. |
Something like this? environment: |
@zarevskaya commented on May 29, 2024, 10:47 AM GMT+2:
No worries it doesn't hurt to enable, just extra work! |
Thanks for the help! |
Great job! Thank you very much! Have a nice day and thanks for support! |
Yes it should work without that. I will keep it in the readme if somebody hasn't configured the docker group properly Thanks for the article and have a nice day you too! |
Ok! You're welcome, with pleasure, I will follow the development closely because it is an interesting tool. Take care about you and thanks for your wrok! |
Hello, first thing, thanks for your work!
I'm using the docker-compose in your main page, Debian 12 and Docker V2.
Just installed now and I have this issue:
18 | import {
19 | normalizeFiletype,
20 | normalizeOutputFiletype,
21 | } from "./helpers/normalizeFiletype";
22 |
23 | const db = new Database("./data/mydb.sqlite", { create: true });
^
SQLiteError: unable to open database file
errno: 14
code: "SQLITE_CANTOPEN"
at new Database (bun:sqlite:160:27)
at /app/src/index.tsx:23:12
Bun v1.1.10 (Linux x64 baseline)
The only way what I found it's to do that:
sudo chown 1000:1000 data/ -R
It's a good way?
The text was updated successfully, but these errors were encountered: