Maintained by: FlyingFlip Studios, LLC
Official Web Site: RethinkDB
2.4.1-arm
,2.4.2-arm
,2.4.3-arm
,2.4.4-arm
2.4.1-amd
,2.4.2-amd
,2.4.3-amd
,2.4.4-amd
latest
- The latest version on AMD processor
Current Version: 2.4.4
RethinkDB is an open-source, distributed database built to store JSON documents and effortlessly scale to multiple machines. It's easy to set up and learn and features a simple but powerful query language that supports table joins, groupings, aggregations, and functions.
Keeping in mind that this image is syntactically compatible with the main RethinkDB image, it is largely the same and follows the compiling instructions for RaspberryPi. In addition to the RethinkDB server, it also includes the pyton based tools for backing up database, exporting and importing data. It is built on Ubuntu. I had to move away from Alpine due to shifting priorities on dependent packages needed to compile the code.
I have used most of the README and all of the instructions from RethinkDB's DockerHub page. ARM support is still considered experimental - so use at your own discretion.
One addition to this image is the inclusion of the python libraries not present in the official images so you can do backup and restores of databases.
The default CMD of the image is rethinkdb --bind all
, so the RethinkDB daemon will bind to all network interfaces available to the container (by default, RethinkDB only accepts connections from localhost
).
docker run --name rethinkdb -p8080:8080 -d -v "$PWD:/data" -d flyingflip/rethinkdb
version: '3'
services:
rethinkdb:
image: flyingflip/rethinkdb
container_name: rethinkdb
volumes:
- ./data:/data
network_mode: host
restart: unless-stopped
version: '3'
services:
rethinkdb:
image: flyingflip/rethinkdb
container_name: rethinkdb
volumes:
- ./data:/data
ports:
- "8080:8080"
networks:
- rethinkdb
restart: unless-stopped
network:
rethinkdb: null
See the official docs for infomation on using and configuring a RethinkDB cluster.
View license information for the software contained in this image.
As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).
Some additional license information which was able to be auto-detected might be found in the repo-info
repository's rethinkdb/
directory.
As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.