設置容器的映射端口
-P 暴露所有端口進行映射
-p 暴露指定容器端口
run [-P] [-p]
四種方式
// containerPort
// 只指定容器端口,宿主機的端口是隨機的
docker run -p 80 -i -t mydocker1 /bin/bash
// hostPort
// 同時指定了 宿主機端口 和 容器端口
docker run -p 8080:80 -i -t mydocker1 /bin/bash
// ip::containerPort
// 指定ip 和容器的端口
docker run -p 0.0.0.0:80 -i -t mydocker1 /bin/bash
// ip::hostPort
// ip,宿主機和容器端口同時指定
docker run -p 0.0.0.0:8080:80 -i -t mydocker1 /bin/bash
示例: Nginx部署
步驟:
- 創(chuàng)建映射80端口的交互式容器
- 安裝 Nginx
- 安裝vim 編輯器
- 創(chuàng)建靜態(tài)頁面
- 修改 Nginx配置文件
- 運行Nginx
- 驗證網(wǎng)頁訪問
創(chuàng)建映射80端口的交互式容器
docker run -p 80 --name web -i -t ubuntu /bin/bash
安裝 Nginx
建議換阿里云源
apt install -y nginx
安裝vim 編輯器
apt install vim
創(chuàng)建靜態(tài)頁面
mkdir -p /var/www/html
cd /var/www/html
vim index.html
修改 Nginx配置文件
root@e6bb5696e362:/var/www/html# whereis nginx
nginx: /usr/sbin/nginx /etc/nginx /usr/share/nginx
root@e6bb5696e362:/var/www/html# ls /etc/nginx
conf.d koi-utf nginx.conf sites-available uwsgi_params
fastcgi.conf koi-win proxy_params sites-enabled win-utf
fastcgi_params mime.types scgi_params snippets
root@e6bb5696e362:/var/www/html# ls /etc/nginx/sites-enabled/
default
root@e6bb5696e362:/var/www/html# vim /etc/nginx/sites-enabled/default
nginx配置文件
root 指定路徑已經(jīng)是正確的就不用修改。
運行Nginx
root@e6bb5696e362:/var/www/html# nginx
root@e6bb5696e362:/var/www/html# ps -ef
UID PID PPID C STIME TTY TIME CMD
root 1 0 0 16:16 ? 00:00:00 /bin/bash
root 1249 1 0 16:45 ? 00:00:00 nginx: master process nginx
www-data 1250 1249 0 16:45 ? 00:00:00 nginx: worker process
www-data 1251 1249 0 16:45 ? 00:00:00 nginx: worker process
root 1253 1 0 16:45 ? 00:00:00 ps -ef
讓容器運在后臺
CTRL + P
CTRL + Q
驗證網(wǎng)頁訪問
hejing@learning:~$ docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
e6bb5696e362 ubuntu "/bin/bash" 32 minutes ago Up 32 minutes 0.0.0.0:32768->80/tcp web
hejing@learning:~$ docker port web
80/tcp -> 0.0.0.0:32768
hejing@learning:~$ docker top web
UID PID PPID C STIME TTY TIME CMD
root 7398 7382 0 00:16 pts/19 00:00:00 /bin/bash
root 8907 7398 0 00:45 ? 00:00:00 nginx: master process nginx
www-data 8908 8907 0 00:45 ? 00:00:00 nginx: worker process
www-data 8909 8907 0 00:45 ? 00:00:00 nginx: worker process
hejing@learning:~$
hejing@learning:~$ curl http://127.0.0.1:32768
<!DOCTYPE html>
<html>
<head>
<title></title>
<script type="text/javascript" src="https://cdn.bootcss.com/jquery/3.2.1/jquery.js
"></script>
<style type="text/css">
.hello{
color:red;
}
</style>
</head>
<body>
<h3> welcome to <b class="hello">uic</b></h3>
<select name="a1" id="a1" >
<option value="a"> A</option>
<option value="b"> B</option>
<option value="c"> C</option>
</select>
//此處 省略了 其余 html 代碼
瀏覽器打開查看
效果圖
使用容器地址來查看
hejing@learning:~$ docker inspect web
image.png
hejing@learning:~$ curl http://172.17.0.2
image.png
瀏覽器再打開查看
image.png
停止容器 web 并重新啟動容器 web, nginx并沒有跟隨啟動
hejing@learning:~$ docker stop web
web
hejing@learning:~$ docker start -i web
root@e6bb5696e362:/# ps -ef
UID PID PPID C STIME TTY TIME CMD
root 1 0 0 17:07 ? 00:00:00 /bin/bash
root 13 1 0 17:07 ? 00:00:00 ps -ef
root@e6bb5696e362:/#
// 可以使用 docker exec 命令
// 先進入守護容器
CTRL + P
CTRL + Q
hejing@learning:~$ docker exec web nginx
hejing@learning:~$ docker top web
UID PID PPID C STIME TTY TIME CMD
root 9595 9578 0 01:07 pts/19 00:00:00 /bin/bash
root 9736 1 0 01:11 ? 00:00:00 nginx: master process nginx
www-data 9737 9736 0 01:11 ? 00:00:00 nginx: worker process
www-data 9738 9736 0 01:11 ? 00:00:00 nginx: worker process
停止容器重新啟動,分配地址和端口可能改變
docker inspect web
容器端口.png