rethinkdb-dockerfiles
rethinkdb-dockerfiles copied to clipboard
Dockerfiles for past and present versions of RethinkDB.
Ideally the image should not be run as root, I recommend creating a user and changing the rethinkdb permissions to be accessible by that user
Rethinkdb Service can't start when Container restarted. _docker-compose.yml_ ```yml rethinkdb: restart: always image: rethinkdb:latest ports: - 28015:28015 volumes: - ./data:/data ``` LOGS: ```txt Running rethinkdb 2.3.5~0jessie (GCC 4.9.2)... Running on...
I want to use the official image but can't because the volume command stops how I want to use the image. I want to load data into an image, commit...