Docker enables multiple port mapping commands

Docker enables multiple port mapping commands

as follows:

docker run -d -p 5000:23 -p 5001:22 --name telnet_ssh --privileged=true telnet:centos /usr/sbin/init

Supplement: Docker makes multiple ports open

as follows:

docker run -it -p20180:80 -p20181:8080 -p20182:8976 --name containerName image:tag

Attached submission

docker commit -a 'songlk' -m 'commitdesc' container_nginx centos:7.2.1511

The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. If there are any mistakes or incomplete considerations, please feel free to correct me.

You may also be interested in:
  • Docker port mapping and external inaccessibility issues
  • How to achieve network access with Docker port mapping
  • Docker volumes file mapping method
  • Docker file storage path, modify port mapping operation mode
  • Docker primary network port mapping configuration
  • How to modify the port mapping of a running Docker container
  • Docker sets up port mapping, but cannot access the solution

<<:  Detailed explanation of the process of realizing calculator function in javascript

>>:  Essential skills for designing web front-end interfaces

Recommend

Tutorial on installing MYSQL5.7 from OEL7.6 source code

First, download the installation package from the...

Detailed explanation of built-in methods of javascript array

Table of contents 1. Array.at() 2. Array.copyWith...

The front-end page pop-up mask prohibits page scrolling

A problem that front-end developers often encount...

Detailed steps to install MySql 5.7.21 in Linux

Preface The most widely used database in Linux is...

MySQL optimization tutorial: large paging query

Table of contents background LIMIT Optimization O...

9 great JavaScript framework scripts for drawing charts on the web

9 great JavaScript framework scripts for drawing ...

How to use ss command instead of netstat in Linux operation and maintenance

Preface When operating and managing Linux servers...

How to add configuration options to Discuz! Forum

Discuz! Forum has many configuration options in th...

CSS easily implements fixed-ratio block-level containers

When designing H5 layout, you will usually encoun...

What to do if the auto-increment primary key in MySQL is used up

In the interview, you should have experienced the...

Detailed explanation of how MySQL (InnoDB) handles deadlocks

1. What is deadlock? The official definition is a...

JavaScript design pattern learning adapter pattern

Table of contents Overview Code Implementation Su...