Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kstaken/dockerfile-examples
Some example dockerfiles for use with Docker
https://github.com/kstaken/dockerfile-examples
Last synced: 6 days 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 (over 11 years ago)
- Default Branch: master
- Last Pushed: 2019-10-24T05:05:40.000Z (about 5 years ago)
- Last Synced: 2024-10-12T14:34:36.164Z (2 months ago)
- Language: Shell
- Size: 27.3 KB
- Stars: 819
- Watchers: 50
- Forks: 721
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-docker - @kstaken
- 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