PrefaceWhen docker run creates and runs a container, you can specify port mapping rules using -p. However, we often forget to set up port mapping at the beginning or set it up incorrectly and need to modify it. When docker start runs the container, it does not provide a -p option or setting that allows you to modify the specific port mapping rules. So how should we deal with this situation? Today, Docker will teach you how to modify the port mapping of a running Docker container? Method 1: Delete the original container and create a new oneThis solution is the simplest. Just delete the original container and create a new one. Of course don't forget to add port mapping this time. Advantages and disadvantages: The advantage is that it is simple and fast, and is more commonly used in test environments. The disadvantage is that if it is a database mirror, then rebuilding it and reconfiguring it again is more troublesome. Method 2: Modify the container configuration file and restart the Docker serviceContainer configuration file path: /var/lib/docker/containers/[hash_of_the_container]/hostconfig.json The hashofthecontainer is the hash value of the Docker image, which can be viewed through docker ps or docker inspect containername. (You can tell from the CONTAINER ID) As shown above, one of the items in the file is PortBindings, where 8080/tcp corresponds to port 8080 inside the container, and HostPort corresponds to port 9190 mapped to the host. 8361/tcp corresponds to port 8361 inside the container, and HostPort corresponds to port 9191 mapped to the host. Modify the port as needed, restart the docker service, and then start the container service. systemctl restart docker Advantages and disadvantages: The advantage of this method is that it has no side effects and is simple to operate. The disadvantage is that the entire Docker service needs to be restarted. If multiple container services are running on the same host, other container services will be affected. Method 3: Use docker commit to build a new imageDocker commit: commit a container's file changes and configuration information to a new image. This is very useful when testing. You can import all the file changes and configuration information of the container into a new Docker image, and then restart a container with this new image. This will not affect the previous container. 1. Stop the Docker container docker stop container01 2. Commit the docker container docker commit container01 new_image:tag 3. Start a new container using the newly generated image in the previous step docker run --name container02 -p 80:80 new_image:tag Advantages and disadvantages: The advantage of this method is that it will not affect other containers on the same host machine. The disadvantage is that it is more messy to manage and is not as intuitive as the second method. SummarizeThis is the end of this article about how to modify the port mapping of a running docker container. For more information about how to modify the port mapping of a running docker container, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Some parameter descriptions of text input boxes in web design
>>: Introduction to Vue life cycle and detailed explanation of hook functions
Table of contents 1. Application and configuratio...
theme Today I will teach you how to create a circ...
Table of contents Horizontal bar chart Dynamicall...
Sometimes the theme of a project cannot satisfy e...
Need to know how many days there are before an im...
Preface Every time you use Docker to start a Hado...
Classical color combinations convey power and auth...
Table of contents need: Main points: According to...
Preface Every time I use the terminal to create a...
Case 1: Last submission and no push Execute the f...
Since I have changed to a new computer, all the e...
Environment: CentOS 7.1.1503 Minimum Installation...
Suppose a user management system where each perso...
Turn off ping scanning, although it doesn't h...
Preface When developing a project, I encountered ...