qubickDB GUI
1.2K
Production-ready admin dashboard for QubicDB
QubicDB Console is a React-based operator UI for managing QubicDB indexes, inspecting brain state, monitoring neuron activity, running queries, and configuring the server — all from a clean dark-themed interface.
docker pull qubicdb/qubicdb-ui:1.0.1
docker run -d --name qubicdb-ui -p 8080:80 qubicdb/qubicdb-ui:1.0.1
Open http://localhost:8080, enter your QubicDB server URL and admin credentials.
docker network create qubicdb-net
docker run -d \
--name qubicdb \
--network qubicdb-net \
-p 6060:6060 \
-e QUBICDB_ADMIN_ENABLED=true \
-e QUBICDB_ADMIN_USER=admin \
-e QUBICDB_ADMIN_PASSWORD=changeme \
-e QUBICDB_ALLOWED_ORIGINS=http://localhost:8080 \
qubicdb/qubicdb:1.0.1
docker run -d \
--name qubicdb-ui \
--network qubicdb-net \
-p 8080:80 \
qubicdb/qubicdb-ui:1.0.1
Login at http://localhost:8080:
http://localhost:6060adminchangemeQUBICDB_ADMIN_ENABLED=trueQUBICDB_ALLOWED_ORIGINS=http://localhost:8080)Direct mutation routes (
/v1/touch,/v1/forget,/v1/fire) are intentionally disabled by server policy in the default configuration.
| Tag | Description |
|---|---|
latest | Latest stable release |
1.0.1 | Current stable release (auth session persist fix) |
1.0.0 | Initial release |
MIT License · Developed by Deniz Umut Dereli
Content type
Image
Digest
sha256:0cbc53d35…
Size
20.2 MB
Last updated
7 months ago
docker pull qubicdb/qubicdb-ui