From e90e6bdf6b08704f2ecad1d324b3068ea1519914 Mon Sep 17 00:00:00 2001 From: David Date: Sat, 2 Nov 2019 18:46:04 +0100 Subject: [PATCH] podman: add page (#3491) --- pages/common/podman.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 pages/common/podman.md diff --git a/pages/common/podman.md b/pages/common/podman.md new file mode 100644 index 0000000000..8e3e743438 --- /dev/null +++ b/pages/common/podman.md @@ -0,0 +1,37 @@ +# podman + +> Simple management tool for pods, containers and images. +> Podman provides a Docker-CLI comparable command line. Simply put: `alias docker=podman`. +> More information: . + +- Print out information about containers: + +`podman ps` + +- List all containers (both running and stopped): + +`podman ps --all` + +- Start one or more containers: + +`podman start {{container_name}} {{container_id}}` + +- Stop one or more running containers: + +`podman stop {{container_name}} {{container_id}}` + +- Pull an image from a registry (defaults to the Docker Hub): + +`podman pull {{image_name}}:{{image_tag}}` + +- Open a shell inside of an already running container: + +`podman exec --interactive --tty {{container_name}} {{sh}}` + +- Remove one or more stopped containers: + +`podman rm {{container_name}} {{container_id}}` + +- Display the logs of one or more containers and follow log output: + +`podman logs --follow {{container_name}} {{container_id}}`