#!/usr/bin/env bash# shellcheck disable=SC2288set -Eeuo pipefaildir="$(realpath --relative-to="${PWD}""$(dirname"${BASH_SOURCE[0]}")")"source"${dir}/../bash/nix-container-demo-helper.sh"h"Now we are inside a development shell that has podman available.","Podman is an alternative implementaion of Docker that can also handle OCI containers.","One of the advantages is that it can run rootless, without a daemon."n"We have added the 'dockerCompat' package so we can use the 'docker' command instead of 'podman'.","In this demo we use it interchangably just to show we can."h"So we start by loading the container we just made into the registry:"x docker load -i"${dir}/result-container"h"We can see it's there:"x"docker image ls | grep 'wttr-delft\|^REPOSITORY'"h"And now we can run it:"x docker run -it localhost/wttr-delft:nixh"The image is somewhat minimal, e.g. there is no interactive shell:"f podman run --entrypoint sh -it localhost/wttr-delft:nixh"We have running containers:"x"podman ps --all --storage | grep 'wttr-delft\|^CONTAINER ID'"h"Let's kill them and remove them to clean up after ourselves..."x"podman ps --all --storage | tail -n +2 | grep wttr-delft | awk '{print \$1}' | xargs podman rm"x"podman image ls | tail -n +2 | grep wttr-delft | awk '{print \$3}' | xargs podman image rm -f"