-
Notifications
You must be signed in to change notification settings - Fork 60
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
Wrap it with docker #3
Comments
We do have pre built binaries available on the releases page. We also have a version on Docker Hub but that docker image only allows you to view a sample database. It doesn't allow you to configure your own sqlite database. We will add that feature soon. |
Maybe, what you can do is that, you check the if there is a sqlite in a specific folder. Example you have |
It is really useful to debug things sometimes for sure. I am running this on my node alongside Tailscale, works great services:
sqlite-studio:
image: frectonz/sqlite-studio:0.1.8
command: /nix/store/84b16i4lzii52bzbdggf5b17qsarp00p-sqlite-studio-0.1.8/bin/sqlite-studio --address=0.0.0.0:3030 sqlite /mounted/${DATABASE_NAME}
volumes:
- ${DATABASE_PATH}:/mounted It would be nice to have a cleaner way to do it tho, and a |
A docker image for SQL Studio is available on the Docker Hub. https://hub.docker.com/r/frectonz/sql-studio The |
Hi, it is good idea to wrap your code with docker container, to let world to try your solution.
The instructions for a docker is a modern standard of distribution for a web software.
It's pretty hard to build all the thing on my PC to just see every solution on the github, so me and lot of another people will just skip a repo with instructions "how to build" and with no instructions "how to run right here right now with docker".
The text was updated successfully, but these errors were encountered: