Notepad/enter/Coding Tips (Classical)/Terminal Tips/System Client/Servers/Virtual Machines/Podman.md

38 lines
572 B
Markdown
Raw Permalink Normal View History

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
```