Podman
Jump to navigation
Jump to search
"Podman is a daemonless container engine for developing, managing, and running OCI Containers on your Linux System." (Cited from Podman)
Build an image from a Dockerfile
Display the log of the container
List the images
List the containers
List running containers
List all containers
- docker container ls -a
- podman ps -a
Remove the container
Start the container from image
- docker run [OPTIONS] IMAGE [COMMAND] [ARG...] [11]
- podman run [options] image [command [arg …]] e.g. podman run --name <CONTAINER_NAME> <IMAGE_ID> [12]
References
- ↑ docker build | Docker Documentation
- ↑ podman-build — Podman documentation
- ↑ docker logs | Docker Documentation
- ↑ podman-logs — Podman documentation
- ↑ docker image ls | Docker Documentation
- ↑ podman-images — Podman documentation
- ↑ docker container ls | Docker Documentation
- ↑ podman-ps — Podman documentation
- ↑ docker rm | Docker Documentation
- ↑ podman-rm — Podman documentation
- ↑ docker run | Docker Documentation
- ↑ podman-run — Podman documentation