iptables is used by docker itself so you need to be careful on doing mods: https://docs.docker.com/network/packet-filtering-firewalls/
I'm looking at iptables configuration that was done by other teams
trying to find which rule blocks clearml
(all worked when iptables disabled)
there are processes listening on host ports?
hey JuicyFox94
standard standalone Linux using compose
the application is functional on localhost for sure
what kin d of Clearml installation you did on machine? there are processes listening on these ports?
iptables -A INPUT -p tcp --dport 8080 -j ACCEPT
iptables -A INPUT -p tcp --dport 8008 -j ACCEPT
iptables -A INPUT -p tcp --dport 8081 -j ACCEPT
with that said Iโd start trying to work on localhost just to focus on the real problem and then I would move outside
oh boy, how much I hate reverse engineer of setup not I did ๐
I'll dig in more