this post was submitted on 04 Nov 2024
7 points (100.0% liked)
Container platforms (docker, lxc, podman)
314 readers
1 users here now
A place to discuss everything related to Container platforms and runtimes. Docker, LXC, Podman, OpenShift, OCI, and more.
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I'm not sure what you're trying to achieve here; it's already on port 8080 so this is at best a no-op. Normally you can't bind two things to the same port and the second attempt would fail.
This feels like an XY problem - what is your desired outcome? Just to access port 8080 from another computer?
I have rootless podman set up similarly on Fedora. I have Caddy running on 1080 (HTTP) and 1443 (HTTPS) and this handles the reverse proxying to my other containers, including one on port 8000. Port 8000 is open in the firewall to allow direct access, left over from testing (I have an external firewall that filters out this port to most IPs).
So 'it's already on port 8080' makes sense, but as I mentioned, no remote computers on the same LAN can reach that port (they can ping the host with no issue), and that's what I'm trying to resolve. I'm not using a reverse proxy.
Through further testing it looks like I'd missed adding the firewall rule to allow port 8080 TCP to the public zone; I currently have it added it to the 'trusted' zone which came from some online guides regarding rootlet podman but that didn't resolve it. I'm sure I'd added it to the public zone previously as well to test with it not working so removed it, but it is now so I'll have to keep testing a bit to ensure it's repeatable.
If it's losing the settings when you reboot, you can do
firewall-cmd --runtime-to-permanent
which does what the name suggests. Alternatively, you can use the--permanent
flag when adding new services.