You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When having installed docker and podman it is not possible to use podman as the container runtime.
The buildContainerImage.sh (and most likely all others) simply prefer Docker over Podman and therefore malke it impossible to use Podman.
It would be helpful to habe an option or environment flag that specifies what engine to use or to overwrite the default detection.
# Check container runtimecheckContainerRuntime() {
CONTAINER_RUNTIME=$(which docker 2>/dev/null)||
CONTAINER_RUNTIME=$(which podman 2>/dev/null)||
{
echo"No docker or podman executable found in your PATH"exit 1
}
if"${CONTAINER_RUNTIME}" info | grep -i -q buildahversion;then
checkPodmanVersion
else
checkDockerVersion
fi
}
The text was updated successfully, but these errors were encountered:
When having installed docker and podman it is not possible to use podman as the container runtime.
The buildContainerImage.sh (and most likely all others) simply prefer Docker over Podman and therefore malke it impossible to use Podman.
It would be helpful to habe an option or environment flag that specifies what engine to use or to overwrite the default detection.
The text was updated successfully, but these errors were encountered: