Some example dockerfiles for use with Docker
  • Dockerfile 85.2%
  • Shell 8.6%
  • JavaScript 6%
  • PHP 0.2%
Find a file
2015-08-10 01:45:47 -04:00
apache Updated from ubuntu 12.04 to 14.04 2015-08-10 01:45:47 -04:00
apache-php Building on the apache example to add php 2013-07-14 23:47:17 -07:00
couchdb Adjusting expose statements to reflect best practices 2013-07-12 11:50:26 -07:00
docpad Restructuring to a more standard layout 2013-07-11 13:34:48 -07:00
icecoder Updated from ubuntu 12.04 to 14.04 2015-08-10 01:45:47 -04:00
mongodb Tweaking the examples for demos 2013-07-19 14:34:16 -07:00
mysql-server Updated from ubuntu 12.04 to 14.04 2015-08-10 01:45:47 -04:00
nodejs Tweaking the examples for demos 2013-07-19 14:34:16 -07:00
nodejs-mongodb clean up and a combined nodejs + mongo example 2013-07-05 12:59:59 -07:00
rethinkdb Adjusting expose statements to reflect best practices 2013-07-12 11:50:26 -07:00
salt-master Adding icecoder example 2013-07-10 17:32:40 +00:00
salt-minion Adding icecoder example 2013-07-10 17:32:40 +00:00
README.md Updating readme 2013-07-14 23:24:22 -07:00

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