================================================================================
                               Podman: Containers
================================================================================

Pulling an image from remote repository
$ podman pull <image>

List images
$ podman images

List running containers
$ podman ps

Remove container image
$ podman rmi <image>

--------------------------------------------------------------------------------
Run containers
--------------------------------------------------------------------------------

To run a bash command inside the container and remove it right after
$ podman run --rm fedora-minimal:latest bash -c 'echo "Hello"'

--rm remove the container at the end, it's similar to run podman-rm just after.
$ podman-rm <container>

To add a shared volume use -v <host_dir>:<container_dir>
$ podman run --rm -v /build:/build fedora-minimal:latest bash -c 'echo "Hello"'

add -it to run interactively
-i: interactive
-t: attach a tty
