I built some software in a container (using Podman) and would like to run the binary on my host. The binary is linked to some dynamic libraries that I don't have on my host. I figured that a quick hacky solution is to mount the container's filesystem on my host and have the binary look for libraries in there (for instance using LD_LIBRARY_PATH
).
How can I mount/see the container's filesystem on my host?