38 lines
572 B
Markdown
38 lines
572 B
Markdown
|
||
Another containerization tool similar to Docker.
|
||
|
||
To get started:
|
||
|
||
|
||
# Installation:
|
||
|
||
MacOS
|
||
|
||
```
|
||
sudo port install podman
|
||
```
|
||
|
||
For more information on Podman on ArchLinux [click here](https://wiki.archlinux.org/title/Podman)
|
||
|
||
Alpine Linux.
|
||
|
||
```
|
||
sudo apk add podman
|
||
```
|
||
|
||
For further details, please refer to the instructions on the [Alpine Linux wiki](https://wiki.alpinelinux.org/wiki/Podman).
|
||
|
||
|
||
Create and start your first Podman machine:
|
||
|
||
```
|
||
podman machine init
|
||
podman machine start
|
||
```
|
||
|
||
You can then verify the installation information using:
|
||
|
||
```
|
||
podman info
|
||
```
|