Podman: Difference between revisions
Jump to navigation
Jump to search
(Created page with ""Podman is a daemonless container engine for developing, managing, and running OCI Containers on your Linux System." (Cited from [https://podman.io/ Podman]) == List running...") |
No edit summary |
||
| Line 1: | Line 1: | ||
"Podman is a daemonless container engine for developing, managing, and running OCI Containers on your Linux System." (Cited from [https://podman.io/ Podman]) | "Podman is a daemonless container engine for developing, managing, and running OCI Containers on your Linux System." (Cited from [https://podman.io/ Podman]) | ||
== List images == | |||
* {{ kbd | key=<nowiki>docker image ls [OPTIONS] [REPOSITORY[:TAG]]</nowiki>}} <ref>[https://docs.docker.com/engine/reference/commandline/image_ls/ docker image ls | Docker Documentation]</ref> | |||
* {{ kbd | key=podman images [options] [image]}} <ref>[https://docs.podman.io/en/latest/markdown/podman-images.1.html podman-images — Podman documentation]</ref> | |||
== List running containers == | == List running containers == | ||
* {{ kbd | key=<nowiki>docker container ls [OPTIONS]</nowiki>}}<ref>[https://docs.docker.com/engine/reference/commandline/container_ls/ docker container ls | Docker Documentation]</ref> | * {{ kbd | key=<nowiki>docker container ls [OPTIONS]</nowiki>}} <ref>[https://docs.docker.com/engine/reference/commandline/container_ls/ docker container ls | Docker Documentation]</ref> | ||
* {{ kbd | key=podman ps}}<ref>[https://docs.podman.io/en/latest/markdown/podman-ps.1.html podman-ps — Podman documentation]</ref> | * {{ kbd | key=podman ps}} <ref>[https://docs.podman.io/en/latest/markdown/podman-ps.1.html podman-ps — Podman documentation]</ref> | ||
== Build an image from a Dockerfile == | == Build an image from a Dockerfile == | ||
Revision as of 14:57, 22 August 2022
"Podman is a daemonless container engine for developing, managing, and running OCI Containers on your Linux System." (Cited from Podman)
List images
List running containers
Build an image from a Dockerfile
- docker build [OPTIONS] PATH | URL | - [5]
- podman build [options] [context] e.g. podman build -f ./Dockerfile [6]