Deploying on Docker
This section introduces how to quickly experience openGemini through Docker at first, and then explains how to use openGemini for writing and querying in a Docker environment. If you are not familiar with Docker, you can use the manual installation method to experience it quickly. If you are interested in contributing code to openGemini or are interested in its internal technical implementation, you can download the source code from the GitHub for building and installation.
Run with Docker
Install the Docker environment
Use the latest openGemini container image:
> docker run -d --name opengemini opengeminidb/opengemini-server:latest
Or specify a version of the container image:
> docker run -d --name opengemini opengeminidb/opengemini-server:v1.0.1
Connect to openGemini cli:
> docker exec -it opengemini ts-cli
Basic operations
You can refer to the basic operations in the manual installation section
Stop/Delete container
> docker stop opengemini > docker rm opengemini
For more usage, please refer to: