-
Hello All, I have installed the docker image on Mint 21 using the following command.
My Valheim server works quite well, and I'm super stoked about that, but my supervisor does not seem to be listening external to the container. I verified that it seems to be running inside the container by exec sh -i "curl localhost:9001" and receiving html (Forbidden) meaning the webserver actually responded. External to the container (both on the container host, and other machines within the same network) I am unable to get any sort of response. I have already disabled the ufw (which returns status: Inactive), and am at a loss as to what else I need to do in order to share the supervisor external to the container. I'm very new at docker containers, so I'm nearly certain it's just something I am doing incorrectly. If someone could give me a hand, I would greatly appreciate it. -Chance |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I figured it out, I had to "Expose" the port by adding another |
Beta Was this translation helpful? Give feedback.
I figured it out, I had to "Expose" the port by adding another
-p 9001:9001/tcp
which worked brilliantly.