feat(libredb-studio): add LibreDB Studio - #992
Open
yusuf-gundogdu wants to merge 1 commit into
Open
Conversation
Add LibreDB Studio, an open-source self-hosted SQL IDE, to the app store. Deploys a single container with a named volume for its embedded SQLite storage and serves a web UI on the LAN.
|
Open
2 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Summary
Add LibreDB Studio, an open-source (MIT) self-hosted SQL IDE. It provides a web-based interface to connect to databases, browse schemas, write and run SQL queries, and manage data from any browser on the LAN. Data is stored locally in a SQLite database, so no external database is required.
New app under
Apps/LibreDBStudio/:Details
ghcr.io/libredb/libredb-studio:0.9.66(pinned, public on GHCR, amd64 + arm64)/DATA/AppData/$AppID/data->/app/data(SQLite), following the CasaOS AppData convention so the data is visible and backup-friendly. The image entrypoint starts as root, chowns the data directory to the app user, then drops privileges with gosu, so the bind mount works without any permission issue.Validation
docker compose -f Apps/LibreDBStudio/docker-compose.yml config -qpasses (exit 0)./api/db/health, login works over plain HTTP with the admin credentials, the entrypoint correctly chowns the mounted data directory to the app user (verified: an empty root/host-owned bind mount is re-owned to the app user on start, so no permission crash loop), the SQLite database is written under the data volume, and a saved connection persists across a container restart.Notes
Apps/LibreDBStudio/are added. No changes to category-list.json, recommend-list.json, or featured-apps.json.