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

38 lines
572 B
Markdown
Raw Permalink Blame History

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

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