Get the Dockerfile from the Docker imagedocker history --format {{.CreatedBy}} --no-trunc=true $DockerImage |sed “s//bin/sh\ -c\ #(nop)\ //g”|sed “s//bin/sh\ -c/RUN/g” | tac Note: This docker file does not map directories or ports and does not execute the docker startup script or server service. Docker multiple port mappingDocker multiple ports docker run -it -d --name container-name -p p1:p1 -p p2:p2 new-image-name -ip xxxxx —restart=always Method 1: Adding ports at runtime /var/lib/docker/containers/{container_id}/hostconfig.json Method 2: docker commit containerid now/live Run the image and add the port: docker run -d -p 8000:80 now/live /bin/bash Get the container IP: docker inspect container_name | grep IPAddressiptable forwarding portiptables -t nat -A DOCKER -p tcp --dport 8001 -j DNAT --to-destination 172.17.0.19:8000 Note: Mac may not be able to enter the screen Passing files to Dockersudo docker save -o /home/ubuntu_14804.tar 93123213127ccc This is the end of this article about how to add ports to docker and get dockerfile. For more information about how to add ports to docker and get dockerfile, 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:
|
<<: Advantages and disadvantages of conditional comments in IE
>>: mysql5.7 remote access settings
1. Introduction This article does not have screen...
Table of contents Preface 1. Rendering 2. Code 3....
Recently, when I was working on monitoring equipm...
Table of contents 1. Basic Use 2. Image quantity ...
1. Check whether port 80 is occupied. Generally, ...
Lists are used to list a series of similar or rela...
Beginners can learn HTML by understanding some HT...
Mapping the mouse position or implementing drag e...
Preface Recently, during an interview, I was aske...
When the system encounters various IO bottlenecks...
Table of contents Preface 1. Arrange the installa...
Table of contents Scene Setting Game Resources Tu...
1. Add the plug-in and add the following configur...
When applying docker containers, we often mount t...
Through an example, I shared with you the solutio...