Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 562 Bytes

install-podman-on-macos.md

File metadata and controls

37 lines (24 loc) · 562 Bytes

Install Podman On MacOS

Category: Docker

Podman is alternative to the Docker container runtime and is supported on Linux, macOS and Windows.

To install on macOS:

brew install podman

To show the installed version:

podman --version

Initialise podman using the following command:

podman machine init

Start podman:

podman machine start

Podman will be operational when you see Machine "podman-machine-default" started successfully at the console.

Stop podman:

podman machine stop