Compare commits

...

4 Commits

Author SHA1 Message Date
IamTheFij 9a22a2046c Merge remote-tracking branch 'github/master'
continuous-integration/drone/push Build is passing Details
2021-04-07 08:44:14 -07:00
IamTheFij 67b85ce990 Remove no-verify recommendation
Fixes #2
2021-04-07 08:42:35 -07:00
IamTheFij 86d69eafb9
Merge pull request #1 from lkwg82/patch-1
fixes link to hadolint
2021-04-06 10:40:27 -07:00
Lars K.W. Gohlke 6cf90c5656
fixes link to hadolint 2020-09-13 19:35:08 +02:00
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ A set of [pre-commit](http://pre-commit.com) hooks for Docker services
Verifies that docker-compose files are valid by using `docker-compose config` to parse them.
### hadolint
Uses the [hadolint Docker image](https://hub.docker.com/hadolint/hadolint) to lint Dockerfiles.
Uses the [hadolint Docker image](https://hub.docker.com/r/hadolint/hadolint) to lint Dockerfiles.
### hadolint-system
Uses the whatever version of hadolint that you have installed to lint Dockerfiles. This requires you to have hadolint installed somewhere in your path.

View File

@ -24,7 +24,7 @@ check_files() {
}
if ! check_files "$@" ; then
echo "To ignore, use --no-verify"
echo "Some compose files failed"
fi
exit $has_error