Ok, I really want to use podman, but the last time I built an image and tried to run it, I ran into a brick wall. I think I used something called buildah to package something, and it had some parameter for a name, but then trying to run it using podman, podman didn't seem to have any way to reference the container image that I THINK buildah created. I think there was also something called spokeo but I don't recall wh…
This works for me on Ubuntu 22.10: $ sudo apt install podman buildah $ mkdir empty && cd empty $ cat > Containerfile /root/hello.sh ENTRYPOINT ["/bin/sh", "/root/hello.sh"] EOF $ buildah build -f Containerfile -t hello-podman . $ podman run -it --rm localhost/hello-podman:latest hello podman! edit: stryan has more minimalist instructions above.
I will now bitch about how everything needs to be converted to some obscure url or pseudo-url when a file path would do. This has bitten me on:
- JSP tag libraries
- XML xsd references (which back in the Spring XML namespace-go-nuts era was really annoying)
- file:///fully/qualified/path
There, I have bitched.