https://github.com/kstaken/dockerfile-examples
Some example dockerfiles for use with Docker
https://github.com/kstaken/dockerfile-examples
Last synced: about 1 month ago
JSON representation
Some example dockerfiles for use with Docker
- Host: GitHub
- URL: https://github.com/kstaken/dockerfile-examples
- Owner: kstaken
- Created: 2013-07-03T19:24:56.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2019-10-24T05:05:40.000Z (over 5 years ago)
- Last Synced: 2025-04-19T16:15:15.371Z (2 months ago)
- Language: Shell
- Size: 27.3 KB
- Stars: 821
- Watchers: 49
- Forks: 720
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-docker - @kstaken
- awesome-docker - @kstaken
- awesome-docker - @kstaken
- awesome-docker - @kstaken
- fucking-awesome-docker - @kstaken
- fucking-awesome-docker - @kstaken
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