第十三屆

devops
container & k8s 奏鳴曲
阿展展展

系列文章

DAY 11

[13th][Day11] image tag

pull 一個 ubuntu image docker pull ubuntu:19.04 列出現有哪些ubuntu images docker image...

DAY 12

[13th][Day12] docker commit

前幾天我都是 pull 別人 build 好的 docker image , 那麼如何編輯一個屬於自己的 docker image呢? build image...

DAY 13

[13th][Day13] docker file

相較於用 docker commit ,比較多人是使用 『Dockerfile』來建立 image A Dockerfile is a text docum...

DAY 14

[13th][Day14] docker port

dockerfile 中的每一個步驟都會 commit 一次,docker history 可以看 image 的每一層 & dockerfile 指令 doc...

DAY 15

[13th][Day15] dockerfile 指令

第一個 dockerfile 中已經用過幾個指令了 RUN EXPOSE 接下來會遇到的還有 CMD ENTRYPOINT ADD COPY VOLUME W...

DAY 16

[13th][Day16] docker push

VOLUME 為 container 添加一個 volume ,一個 VOLUME 可以分給多個 container 使用,VOLUME 依賴 host mac...

DAY 17

[13th][Day17] docker registry

image 擁有一個公開的 registry 是很方便的,但有時候會想要 build & 儲存 一些比較 private 的 image 時要怎麼做呢? 1....

DAY 18

[13th][Day18] try nginx

使用 docker build 並測試一個 web server 使用 docker 測試靜態網站建立一個資料夾 下載 global.conf nginx.c...

DAY 19

[13th][Day19] network bridge

目前都只有從 container 公開 port 並綁定到本機,使得 container 內的服務 publish 到 host machine 所在的外網上...

DAY 20

[13th][Day20] docker network

今天要來聊聊 docker networkingcontainer 之間的 connect 是用網路創建的,被稱為 docker networking dock...