adhenrique / dockerfile-examples

Some example dockerfiles for use with Docker

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Some example dockerfiles for use with Docker


Languages

Language:Dockerfile 85.2%Language:Shell 8.6%Language:JavaScript 6.1%Language:PHP 0.2%