Blog posts on technology, programming, math and AI
by Dhanesh Padmanabhan
If you have a Mac M1 and have been struggling to get podman
, a popular alternative to docker-desktop
working, this post might be useful to you.
Here are the steps needed:
arm64
. You can do that using a command env /usr/bin/arch -arm64 /bin/zsh --login
. Type arch
again to ensure you get arm64
arm64
. You can refer the section “Alternative Installs” under homebrew’s documentation. I would recommend using /opt
as the base folder to clone the homebrew git repo and follow rest of the processbrew install simnalamburt/x/podman-apple-silicon
After this test your installation with the following commands
podman machine init
podman machine start
podman run -it --rm docker.io/hello-world
If your installation was successful, you should see “Hello from Docker!” followed by some other information.
tags: podman - apple-silicon - M1