Cannot connect to the Docker daemon at unix:///Users/<username>/.local/share/containers/podman/machine/qemu/podman.sock. Is the docker daemon running?
- Check the
$DOCKER_HOST
environment variable to see which socket Docker is using by runningecho $DOCKER_HOST
in your terminal. - Unset the
$DOCKER_HOST
environment variable withunset DOCKER_HOST
. - Check your terminal configurations, such as
~/.zshrc
or~/.bashrc
, for a line likeexport DOCKER_HOST='unix:///Users/<username>/.local/share/containers/podman/machine/qemu/podman.sock'
and remove it. - Run
source ~/.zshrc
orexec $SHELL
in your terminal to refresh the shell environment.
That's about it \w