This repository contains the Dockerfile of QuasarDB for Docker's automated build published to the public Docker Hub Registry.
| tag | description |
|---|---|
latest |
latest stable release |
nightly |
bleeding edge |
-
Install Docker.
-
Download automated build from public Docker Hub Registry:
docker pull bureau14/qdb(alternatively, you can build an image from Dockerfile:
docker build -t="qdb" github.com/bureau14/qdbd-docker)
docker run -d -p 2836:2836 --name qdb-server bureau14/qdb
Run qdbd without cluster keys
docker run -d -p 2836:2836 --name qdb-server bureau14/qdb --security=0
docker run -d -p 2836:2836 -v <db-dir>:/var/lib/qdb --name qdb-server bureau14/qdb
# Put the license.txt file in the root of your <db-dir>
cp license.txt <db-dir>
# Now launch the docker container with the <db-dir> mounted, the container will
# pick up the license file automatically.
docker run -d -p 2836:2836 -v <db-dir>:/var/lib/qdb --name qdb-server bureau14/qdb