iT邦幫忙

2021 iThome 鐵人賽

DAY 18
1

使用 docker build 並測試一個 web server

使用 docker 測試靜態網站
建立一個資料夾
https://ithelp.ithome.com.tw/upload/images/20210926/20119546yqD7bEyT2v.png

下載 global.conf nginx.conf 或者可以自己寫一份

wget https://raw.githubusercontent.com/jamtur01/dockerbook-code/master/code/5/sample/nginx/global.conf
wget https://raw.githubusercontent.com/jamtur01/dockerbook-code/master/code/5/sample/nginx/nginx.conf

準備 Dockerfile

FROM ubuntu:20.04
MAINTAINER eric "eric@example.com"
ENV REFRESHED_AT 2021-09-26
RUN apt-get update
RUN apt-get -y install nginx
RUN mkdir -p /var/www/html/website
ADD nginx/global.conf /etc/nginx/conf.d/
ADD nginx/nginx.conf /etc/nginx/nginx.conf
EXPOSE 80

about dockerfile
安裝 nginx
建一個資料夾 /var/www/html/website
將剛剛下載的 global.conf nginx.conf 夾到 image 中
expose 80 port

global.conf
https://ithelp.ithome.com.tw/upload/images/20210926/201195469nlWRrBoIS.png

將 nginx 設定為監聽 80 port
設定 nginx 導頁的 root 路徑為 /var/www/html/website 就是剛剛 dockerfile 中 mkdir 的部分
需要把 nginx 設定為 daemon off mode,讓 nginx 可以在 container work

nginx/nginx.conf
https://ithelp.ithome.com.tw/upload/images/20210926/201195468NQTgn2TNf.png

daemon off;

nginx 默認情況下會用 daemon 的方式啟動,會導致 container 只有短暫運作就結束,daemon off 能讓 container 維持 active 的模式

準備完成
https://ithelp.ithome.com.tw/upload/images/20210926/20119546S0czQUPgOT.png

build image

docker build -t trytry/nginx .

https://ithelp.ithome.com.tw/upload/images/20210926/201195463kdverrSvV.png

準備 index.html
https://ithelp.ithome.com.tw/upload/images/20210926/201195462Rxtk5nXPb.png

run 一個 nginx testing container

docker run -d -p 80 --name website1 -v $PWD:/var/www/html/website:ro trytry/nginx nginx

-v VOLUME 掛上本機的資料夾作為 VOLUME mount 到 run 起來的 container 中

注意路徑位置 $PWD 會抓取在 terminal 下指令時的目錄
https://ithelp.ithome.com.tw/upload/images/20210926/20119546Zx515aIRRE.png

我們有指定要 expose 的 port 但沒有指定本機對 container 的 port

docker ps -l

https://ithelp.ithome.com.tw/upload/images/20210926/201195469pD0Q6A1Qn.png

得到這次 docker 幫我配的 port 是 0.0.0.0:60087->80/tcp

直接在本機打網址就能從本機 -> nginx container -> mount 進去的 VOLUME 中的 index.html
https://ithelp.ithome.com.tw/upload/images/20210926/20119546RX8HqCt9wk.png

範例來源:第一本Docker書/James Turnbull


上一篇
[13th][Day17] docker registry
下一篇
[13th][Day19] network bridge
系列文
container & k8s 奏鳴曲30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言