Podman (a docker alternative) does not assume that docker.io is the default registry for partial docker image references - like semgrep/semgrep:latest and would result in the following error:
semgrep..................................................................Failed
- hook id: semgrep-docker
- exit code: 125
Emulate Docker CLI using podman. Create /etc/containers/nodocker to quiet msg.
Error: short-name "semgrep/semgrep:latest" did not resolve to an alias and no unqualified-search registries are defined in "/etc/containers/registries.conf"
Adding the docker.io registry in front of the image reference would fix this.
Podman (a docker alternative) does not assume that docker.io is the default registry for partial docker image references - like
semgrep/semgrep:latestand would result in the following error:Adding the
docker.ioregistry in front of the image reference would fix this.