1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 10:22:08 +02:00
tldr/pages/common/podman.md
bl-ue 8ebd171d6f
*: fix typos reported by Hunspell (#5848)
Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com>
Co-authored-by: Seth Falco <seth@falco.fun>
Co-authored-by: Patrice Denis <patricedenis@users.noreply.github.com>
2021-05-20 16:13:41 -04:00

989 B

podman

Simple management tool for pods, containers and images. Podman provides a Docker-CLI comparable command-line. Simply put: alias docker=podman. More information: https://github.com/containers/libpod/blob/master/commands.md.

  • 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}}