Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/randywallace/dockerfiles
https://github.com/randywallace/dockerfiles
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/randywallace/dockerfiles
- Owner: randywallace
- License: mit
- Created: 2013-09-06T04:42:32.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-12-11T06:12:51.000Z (almost 10 years ago)
- Last Synced: 2024-07-31T14:10:17.846Z (4 months ago)
- Language: Shell
- Size: 254 KB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
dockerfiles
===========Some Dockerfiles for [docker](http://docker.io/).
Making your own images is easy!
Let's assume you want to create an image of the ruby-2.0.0 Dockerfile. Simply check out this repo and cd into the ruby-2.0.0-stable directory and:
```
sudo docker build -t ruby-2.0.0 .
```That will build an image tagged ruby-2.0.0:latest
Convetion
---------I am using multiple builds at times to make final images. As such, Dockerfiles make assumptions that certain images exist.
For example, the puppet-3.2.4 Dockerfile assumes that there is an image named 'ruby-1.9.3'. This may be created from the Dockerfile
under the ruby-1.9.3-p448 folder with the tag name ruby-1.9.3.Once that image is created, the puppet Dockerfile build should run just fine!