Docker change published ports on live container

后端 未结 2 1667
有刺的猬
有刺的猬 2021-01-05 09:57

I\'d like to change the published ports on a live container for example

docker run -p 80:80 --name nginx_live nginx

And then later on, chan

相关标签:
2条回答
  • 2021-01-05 10:10

    Docker does not have a mechanism for changing the published ports of a container once it has started. When you publish a port, two things happen:

    • Docker creates iptables rules in the nat table that redirect traffic to the "public" port to the container.
    • Docker starts a proxy service listening on that port to handle locally generated traffic.

    While you could in theory manually update the firewall rules to make the service available at a new port, you would not be able to unbind the Docker proxy and would thus be unable to start any new services using that "public" port.

    Your best course of action is simply to delete the container and redeploy it, or rely on some sort of front-end proxy to handle the redirect rather than using Docker's port publishing mechanism.

    0 讨论(0)
  • 2021-01-05 10:20

    That's not a Docker feature.

    But it's easy to add another layer of indirection: expose one container-port on your host and then run an instance of nginx or a firewall FORWARD rule that maps whatever local ports you want onto that docker-shared port.

    0 讨论(0)
提交回复
热议问题