Images
- List: podman imagescontain
- Delete Image: podman rmi :
- Build: podman build .
Containers
- Delete Container: podman rm
- List running: podman container list (or podman ps)
- List all: podman container list -a (or podman ps -a)
Podman-Compose
- Build: podman-compose build
- Run: podman-compose up -d

Leave a comment