Unable to curl podman container from outside

I have a podman container in my MicrosOS server that is being started with the command podman run -p 127.0.0.1:8080:8080 --name fess fess /app/bin/fess, and can curl it from the non root account from where I started it as well from the root account, but cannot do it from my laptop.
Note that the server have no firewall-cmd command installed, as by factory

Just another search and cannot find anything uselful, probably because I have no idea of the terminology. Anyway this should be some podman configuration becasue this server https://redbean.dev/ does is seen from the anothers machines in the network

looks like just bad arguments with the 0.0.0.0 in the command line

You are binding to localhost, hence you can only reach it from the local machine. You would need to bind to the IP address of your server which is reachable from the local network (or to 0.0.0.0 to bind to all interfaces).

1 Like