2015-06-07 02:53:25 +02:00
## dockerfiles
2020-05-18 19:38:16 +02:00
[![make test ](https://github.com/jessfraz/dockerfiles/workflows/make%20test/badge.svg )](https://github.com/jessfraz/dockerfiles/actions?query=workflow%3A%22make+test%22+branch%3Amaster)
2015-10-22 11:13:39 +02:00
2015-06-07 02:53:25 +02:00
This is a repo to hold various Dockerfiles for images I create.
2018-12-29 17:16:48 +01:00
**Table of Contents**
<!-- toc -->
2018-12-29 17:16:59 +01:00
- [About ](#about )
- [Resources ](#resources )
* [My dotfiles ](#my-dotfiles )
- [Contributing ](#contributing )
* [Using the `Makefile` ](#using-the-makefile )
2018-12-29 17:16:48 +01:00
<!-- tocstop -->
## About
2015-06-07 02:53:25 +02:00
2015-11-16 14:06:59 +01:00
Almost all of these live on dockerhub under [jess ](https://hub.docker.com/u/jess/ ).
2016-09-19 18:14:48 +02:00
Because you cannot use notary with autobuilds on dockerhub I also build these
2016-12-20 07:59:35 +01:00
continuously on a private registry at [r.j3ss.co ](https://r.j3ss.co/ ) for public download. (You're
2016-09-19 18:14:48 +02:00
welcome.)
2015-07-27 06:46:34 +02:00
2018-12-29 17:16:48 +01:00
## Resources
### My dotfiles
2016-09-30 19:47:34 +02:00
You may also want to checkout my [dotfiles ](https://github.com/jessfraz/dotfiles ), specifically the aliases for all these files which are here: [github.com/jessfraz/dotfiles/blob/master/.dockerfunc ](https://github.com/jessfraz/dotfiles/blob/master/.dockerfunc ).
2018-09-25 10:21:17 +02:00
2018-12-29 17:16:48 +01:00
## Contributing
I try to make sure each Dockerfile has a command at the top to document running it,
if a file you are looking at does not have a command, please
pull request it!
### Using the `Makefile`
2018-09-25 10:21:17 +02:00
```
$ make help
build Builds all the dockerfiles in the repository.
dockerfiles Tests the changes to the Dockerfiles build.
image Build a Dockerfile (ex. DIR=telnet).
latest-versions Checks all the latest versions of the Dockerfile contents.
run Run a Dockerfile from the command at the top of the file (ex. DIR=telnet).
shellcheck Runs the shellcheck tests on the scripts.
test Runs the tests on the repository.
2020-05-18 19:38:16 +02:00
```