Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joelnb/dockerfiles
Dockerfiles for building docker images containing various applications
https://github.com/joelnb/dockerfiles
Last synced: 30 days ago
JSON representation
Dockerfiles for building docker images containing various applications
- Host: GitHub
- URL: https://github.com/joelnb/dockerfiles
- Owner: joelnb
- License: mit
- Created: 2017-07-11T22:14:12.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-12-06T00:44:10.000Z (about 2 months ago)
- Last Synced: 2024-12-06T01:28:20.035Z (about 2 months ago)
- Language: Dockerfile
- Size: 192 KB
- Stars: 6
- Watchers: 3
- Forks: 3
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Joel's Dockerfiles
These are some Dockerfiles which I maintain either for my own use or for testing. The things I actually use are likely to be better maintained but I am happy to accept pull requests for anything.
## Getting the images
The images are all available as automated builds under [my user on docker hub](https://hub.docker.com/u/joelnb/) and can therefore be retrieved with a command like:
```
docker pull joelnb/gollum
```## Building the images
A utility script is provided for building images. You can either build a single image with:
```
./build.sh gollum
```Or build all images by passing no arguments:
```
./build.sh
```Everything is built using standard Docker commands so feel free to roll your own commands if you prefer.
If you are using the build script then by default everything is created with the tag 'local' so you should use that to access your built images.
```
docker run $OTHER_ARGS -d joelnb/gollum:local
```