All Projects → rqlite → rqlite-docker

rqlite / rqlite-docker

Licence: MIT License
rqlite docker images

Programming Languages

Dockerfile
14818 projects
shell
77523 projects

Projects that are alternatives of or similar to rqlite-docker

statibus
Minimalistic Statuspage with rqlite and php
Stars: ✭ 22 (+29.41%)
Mutual labels:  rqlite

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].