How to modify the port mapping of a running Docker container

How to modify the port mapping of a running Docker container

Preface

When 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 one

This 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 service

Container 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 image

Docker 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.

Summarize

This 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:
  • Troubleshooting process for Docker container suddenly failing to connect after port mapping
  • Docker port mapping and external inaccessibility issues
  • Add port mapping after docker container starts
  • How to set port mapping for running container in Docker
  • Demonstration and analysis of four port mappings of docker containers

<<:  Some parameter descriptions of text input boxes in web design

>>:  Introduction to Vue life cycle and detailed explanation of hook functions

Recommend

uni-app WeChat applet authorization login implementation steps

Table of contents 1. Application and configuratio...

Example of creating circular scrolling progress bar animation using CSS3

theme Today I will teach you how to create a circ...

Echarts Bar horizontal bar chart example code

Table of contents Horizontal bar chart Dynamicall...

Example code for implementing dynamic skinning with vue+element

Sometimes the theme of a project cannot satisfy e...

How to count down the date using bash

Need to know how many days there are before an im...

Each time Docker starts a container, the IP and hosts specified operations

Preface Every time you use Docker to start a Hado...

Introduction to Royal Blue Color Matching for Web Design

Classical color combinations convey power and auth...

Summary of Git commit log modification methods

Case 1: Last submission and no push Execute the f...

Basic installation tutorial of mysql decompression package

Since I have changed to a new computer, all the e...

How to install openssh from source code in centos 7

Environment: CentOS 7.1.1503 Minimum Installation...

Detailed Analysis of the Selection of MySQL Common Index and Unique Index

Suppose a user management system where each perso...

Basic security settings steps for centos7 server

Turn off ping scanning, although it doesn't h...