dockerfile / rethinkdb

RethinkDB Dockerfile for trusted automated Docker builds.

Home Page:http://dockerfile.github.io/#/rethinkdb

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to import data?

SirwanAfifi opened this issue · comments

I have tried these but it didn't work:

docker run -p 8080:8080 -p 28015:28015 --name rethink_custom -v $(pwd):/rethinkdb_data -d rethinkdb
docker run -p 8080:8080 -p 28015:28015 --name rethink_custom -v $(pwd):/data -d rethinkdb

Any idea?

Solved, it needs an extra /data

docker run -p 8080:8080 -p 28015:28015 --name rethink_custom -v $(pwd):/data/rethinkdb_data -d rethinkdb