From 3b5026dff04bff5733b548b51bcb98ed18e9c7a2 Mon Sep 17 00:00:00 2001 From: Robin Schneider Date: Sat, 25 Oct 2025 18:27:11 +0200 Subject: [PATCH] feat: make OCI container registry explicit to support Podman Podman does not default to docker.io like Docker does. Make registry explicit to make it work for both Podman and Docker. I have tested that this image works well on Podman. I only needed to force pre-commit.com to use Podman. After that, it all works nicely :) --- .pre-commit-hooks.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-hooks.yaml b/.pre-commit-hooks.yaml index 6e79879..24f2b87 100644 --- a/.pre-commit-hooks.yaml +++ b/.pre-commit-hooks.yaml @@ -11,6 +11,6 @@ name: DCLint via Docker description: Validate and enforce best practices in Docker Compose files. language: docker_image - entry: zavoloklom/dclint:3.1.0 + entry: docker.io/zavoloklom/dclint:3.1.0 types: [ yaml ] files: '^(?:.*/)?(?:docker-)?compose\.ya?ml$'