
podman
List of commands for podman:
-
podman:tldr:1eff4 podman: Pull an image from a registry (defaults to Docker Hub).$ podman pull ${image}try on your machineexplain this command
-
podman:tldr:50188 podman: Remove a stopped container.$ podman rm ${container_name}try on your machineexplain this command
-
podman:tldr:6f711 podman: Display the logs of one or more containers and follow log output.$ podman logs --follow ${container_name} ${container_id}try on your machineexplain this command
-
podman:tldr:77de4 podman: Open a shell inside an already running container.$ podman exec --interactive --tty ${container_name} ${sh}try on your machineexplain this command
-
podman:tldr:a9dca podman: Start or stop an existing container.$ podman ${select} ${container_name}try on your machineexplain this command
-
podman:tldr:bdd97 podman: Create a container from an image, with a custom name.$ podman run --name ${container_name} ${image}try on your machineexplain this command