• Stars
    star
    818
  • Rank 55,733 (Top 2 %)
  • Language
    Shell
  • Created over 11 years ago
  • Updated about 5 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Some example dockerfiles for use with Docker

Some basic dockerfile examples

Use with Docker http://www.docker.io

To build an image with docker is pretty simple:

cd rethinkdb
docker build -t="rethinkdb" .

Then to run that image and attach to it at the same time:

docker run -i -t rethinkdb

Or to run it in the background

docker run -d rethinkdb