Compare commits

...

11 Commits

Author SHA1 Message Date
IamTheFij d67a852ae8 Add test hooks with try-repo
continuous-integration/drone/push Build is passing Details
2023-10-26 14:56:42 -07:00
IamTheFij 6cf8fe749d Use personal drone-pre-commit image that has docker-compose binary installed
continuous-integration/drone/push Build is passing Details
2023-10-26 14:53:53 -07:00
IamTheFij f626253b23 Fix regex to match a literal dot before extension
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details
Also simplifies the optional a match a bit.

Fixes #15
2023-04-19 09:19:08 -07:00
IamTheFij 15a900b1bb Use compose plugin language in documentation 2023-04-19 09:18:55 -07:00
IamTheFij 098ffc1472 Remove hadolint completely (inclusing script)
continuous-integration/drone/push Build is passing Details
2023-04-18 17:19:44 -07:00
IamTheFij 1acd61cff1 Remove hadolint completely
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details
2023-04-18 17:18:48 -07:00
IamTheFij 95effa7859 Add installation instructions
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details
Fixes #11
2023-04-18 17:17:43 -07:00
IamTheFij 617b8880e4 Merge branch 'update-docker-compose-regex' of github.com:claha/docker-pre-commit into claha-update-docker-compose-regex
continuous-integration/drone/push Build is passing Details
2023-04-18 17:13:18 -07:00
M. R 3380d1a68e
Prefer docker compose v2
continuous-integration/drone/push Build is passing Details
2023-04-14 12:35:01 +01:00
Claes Hallström 5ed0959cc4 Update regex to also detect compose.yaml files
According to the new compose specification, compose.yaml is the
preferred file name.
2023-04-08 23:30:53 +02:00
Alex Hafner f16a4574c1
wrap "docker compose" command in quotes
continuous-integration/drone/push Build is failing Details
continuous-integration/drone/tag Build is failing Details
2022-05-19 12:28:39 +01:00
6 changed files with 27 additions and 35 deletions

View File

@ -9,9 +9,8 @@ workspace:
steps:
- name: test
image: iamthefij/drone-pre-commit:latest
image: iamthefij/drone-pre-commit@sha256:6ed8dae6b0067bd2e145e36421bcfbbc68975ff7ddaa5a3f285b5bcdaf0989c8
commands:
- pip install docker-compose
- make all
- name: notify

View File

@ -1,21 +1,7 @@
---
- id: docker-compose-check
name: Validate docker-compose files
description: Checks that docker-compose files are valid
name: Validate docker compose files
description: Checks that docker compose files are valid
language: script
entry: compose-check.sh
files: docker-compose.y[a]{0,1}ml$
- id: hadolint
name: Lint Dockerfiles
description: Deprecated! Runs hadolint Docker image to lint Dockerfiles
language: script
entry: hadolint-deprecation.sh
files: Dockerfile
- id: hadolint-system
name: Lint Dockerfiles
description: Deprecated! Runs system hadolint to lint Dockerfiles
language: script
entry: hadolint-deprecation.sh
files: Dockerfile
files: (docker-)?compose\.ya?ml$

View File

@ -2,7 +2,7 @@
all: check test
test: test-negative test-positive
test: test-negative test-positive test-hooks
.PHONY: test-positive
test-positive:
@ -16,6 +16,10 @@ test-negative:
@echo "Check multiple files. Should error."
./compose-check.sh tests/docker-compose* && { echo 'fail'; exit 1; } || echo 'ok'
.PHONY: test-hooks
test-hooks:
pre-commit try-repo . --all-files
# Installs pre-commit hooks
.PHONY: install-hooks
install-hooks:

View File

@ -2,10 +2,21 @@
A set of [pre-commit](http://pre-commit.com) hooks for Docker services
# Installation
Add the following to your `.pre-commit-config.yaml` file
```yaml
- repo: https://github.com/iamthefij/docker-pre-commit
rev: master
hooks:
- id: docker-compose-check
```
and then run `pre-commit autoupdate`.
## Hooks
### docker-compose-check
Verifies that docker-compose files are valid by using `docker-compose config` to parse them.
### hadolint (Removed)
These hooks have been removed in favor of the ones that have been added to https://github.com/hadolint/hadolint
Verifies that docker compose files are valid by using `docker compose config` to parse them.

View File

@ -2,10 +2,10 @@
# Verifies that files passed in are valid for docker-compose
set -e
if command -v docker-compose &> /dev/null ; then
if command -v docker &> /dev/null && docker help compose &> /dev/null; then
COMPOSE="docker compose"
elif command -v docker-compose &> /dev/null ; then
COMPOSE=docker-compose
elif command -v docker &> /dev/null && docker help compose &> /dev/null; then
COMPOSE=docker compose
else
echo "ERROR: Neither 'docker-compose' or 'docker compose' were found"
exit 1

View File

@ -1,8 +0,0 @@
#! /bin/sh
echo "Hadolint hooks have been deprecated in favor of upstream"
echo "repo: https://github.com/hadolint/hadolint"
echo "Replace hook 'hadolint' with 'hadolint-docker'"
echo "Replace hook 'hadolint-system' with 'hadolint'"
exit 1