├── .drone.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pre-commit-hooks.yaml ├── LICENSE ├── Makefile ├── README.md ├── compose-check.sh └── tests ├── docker-compose.bad.yml └── docker-compose.yml /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamTheFij/docker-pre-commit/HEAD/.drone.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | tags 2 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamTheFij/docker-pre-commit/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pre-commit-hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamTheFij/docker-pre-commit/HEAD/.pre-commit-hooks.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamTheFij/docker-pre-commit/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamTheFij/docker-pre-commit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamTheFij/docker-pre-commit/HEAD/README.md -------------------------------------------------------------------------------- /compose-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamTheFij/docker-pre-commit/HEAD/compose-check.sh -------------------------------------------------------------------------------- /tests/docker-compose.bad.yml: -------------------------------------------------------------------------------- 1 | not: valid 2 | -------------------------------------------------------------------------------- /tests/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamTheFij/docker-pre-commit/HEAD/tests/docker-compose.yml --------------------------------------------------------------------------------