I'm creating a podman pod as follows:
podman pod create --name MyAwesomePod --publish=80:8080
which effectively binds port 80 on the "inside" of my pod to the podman host's port 8080.
I then add containers to the pod using something like
podman run --pod MyAwesomePod --name web myWebServerImage
podman run --pod MyAwesomePod --name db mySqlServer
It is then possible for me to access the container running the web server on port 80 as intended (using localhost:8080). However, I cannot figure out if there is a way to display that the routing is going to this specific container. Running podman ps gives me a list of both my running containers and the PORT column lists 0.0.0.0:8080->80/tcp on both, which of course cannot be true.
Is this a flaw in Podman or have I misunderstood the way pods work?
I am running rootless Podman 3.2.0.