Skip to content

Latest commit

 

History

History
58 lines (41 loc) · 1.31 KB

README.md

File metadata and controls

58 lines (41 loc) · 1.31 KB

RethinkDB Alpine (Unofficial)

Minimal rethinkdb docker images based on alpine linux.

Versions

:latest (~36MB)

:python (~79MB)

Build

docker build -t besworks/rethinkdb:latest ./latest/
docker build -t besworks/rethinkdb:python ./python/

Usage

Building :latest from it's Dockerfile takes some time and produces a rather large intermediary build image (~3GB). It's recommended to pull this version from docker hub unless you are forking this project for research/development.

docker run -p 8080:8080 -p 28015:28015 -p 29015:29015 besworks/rethinkdb:latest

Using Volumes

Dockerfile :

FROM besworks/rethinkdb:latest
VOLUME /data

docker-compose.yaml :

version: "3.9"
services:
  db:
    build: .
    ports:
      - 8080:8080
      - 28015:28015
      - 29015:29015
    volumes:
      - ./data:/data