Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kstaken/dockerfile-examples

Some example dockerfiles for use with Docker
https://github.com/kstaken/dockerfile-examples

Last synced: about 2 months ago
JSON representation

Some example dockerfiles for use with Docker

Awesome Lists containing this project

README

        

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