Skip to content

suryatmodulus/rqlite-docker

 
 

Repository files navigation

About this repo

Google Group

This is the Git repo for the rqlite Docker image.

Downloading latest image

docker pull rqlite/rqlite

Starting a single node

docker run rqlite/rqlite

This will start a single node, connected to the default bridge network. The HTTP API will be available at http://$IP:4001. $IP is the address Docker assigns to your rqlite container, and will be displayed in the rqlite logs.

Passing extra options to rqlite

rqlite supports many options, allowing you to control its behavior. To set an option simply append it your launch command. For example, to enable on-disk mode:

docker run rqlite/rqlite -on-disk

You can see the full set of options via:

docker run rqlite/rqlite -help

Clustering

docker run rqlite/rqlite -join $IP:4001

where $IP is the HTTP API IP address of the node you wish to join.

See the rqlite Docker page for more details.

About

rqlite docker images

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 64.1%
  • Shell 35.9%