Are there any packages that build OCI / Docker ima...
# general
l
Are there any packages that build OCI / Docker images without Docker? Can the Docker package be configured to use podman, buildah or anything else?
c
podman usually ships a shim package, like podman-docker on Ubuntu.
l
Won't help: the Docker package is using the API, not the CLI. It's connecting to the Docker daemon's port. Which podman doesn't provide (and indeed, that's the entire purpose of podman, to avoid running a root service).
c
It does.
You need to start podman (probably as a user service), then either point your tool(s) directly at podman's socket or make a symlink
l
I guess I must have been using a wrong version. I didn't even have a podman machine running, and qemu wasn't installed. But podman was doing everything I needed.. until this point. Anyway, thanks to your links, I've got podman machine running. However, the socket is still not exposed. I read the socket activation link, but there's nothing in there about Windows/WSL. The startup messages don't look like the ones I see at https://github.com/containers/podman/blob/main/docs/tutorials/podman-for-windows.md, either.
I've installed podman from inside WSL; maybe I need to install the Windows flavour instead?
c
For socket activation (or running a daemon) - you need to enable / start it manually. Maybe even write own systemd unit (depending on the distro you use)
If you run windows, did you look into https://podman-desktop.io/ ? My understanding that it runs some WSL distro under the hood...
I personally work with container-related stuff "from within" WSL, i.e. fully remote with almost none integration with windows.
l
I tried that, but was still getting the couldn't-find-the-pipe error. Back at the computer now, will look into it more.
However that's what I'd prefer; the podman Desktop and .msi solutions both use podman machine to start up another VM in HyperV, which means I then need to figure out how to mount the from that VM into the VM I'm using. So I'm going to go back to the pure-Linux solution, buoyed by the information that you've got it working successfully.