從頭基於空映象scratch建立一個新的Docker映象

i042416發表於2018-11-27

我們在使用Dockerfile構建docker映象時,一種方式是使用官方預先配置好的容器映象。優點是我們不用從頭開始構建,節省了很多工作量,但付出的代價是需要下載很大的映象包。

比如我機器上docker images返回的這些基於nginx的映象,每個都超過了100MB,而一個簡單的Ubuntu的容器超過了200MB,如果安裝了相關的軟體,尺寸會更大。

從頭基於空映象scratch建立一個新的Docker映象

如果我們的需求是在構建一個符合我們實際業務需求的Docker映象的前提下,確保映象尺寸儘可能的小,應該怎麼做呢?

思路是使用空映象scratch。

從頭基於空映象scratch建立一個新的Docker映象

新建一個資料夾,用wget下載rootfs.tar.xz壓縮包。

wget -O rootfs.tar.xz https://github.com/debuerreotype/docker-debian-artifacts/raw/b024a792c752a5c6ccc422152ab0fd7197ae8860/jessie/rootfs.tar.xz

從頭基於空映象scratch建立一個新的Docker映象

這個將近30MB的壓縮包是個什麼東東?

解壓之後看內容就知道了,包含了作業系統大部分常用命令。


從頭基於空映象scratch建立一個新的Docker映象

wget -O nginx.conf https://github.wdf.sap.corp/raw/slvi/docker-k8s-training/master/docker/res/nginx.conf

新建一個dockerfile檔案,將下列內容貼上進去:

FROM scratch# set the environment to honour SAP's proxy serversENV http_proxy http://sap.corp:8080
ENV https_proxy http://sap.corp:8080
ENV no_proxy .sap.corp# give yourself some creditLABEL maintainer="Jerry Wang"# add and unpack an archive that contains a Debian root filesystemADD rootfs.tar.xz /# use the apt-get package manager to install nginx and wgetRUN apt-get update && \
apt-get -y install nginx wget# use wget to download a custom website into the imageRUN wget --no-check-certificate -O /usr/share/nginx/html/cheers.jpg https://github.wdf.sap.corp/raw/slvi/docker-k8s-training/master/docker/res/cheers.jpg && \
wget --no-check-certificate -O /usr/share/nginx/html/index.html https://github.wdf.sap.corp/raw/slvi/docker-k8s-training/master/docker/res/cheers.html# copy the custom nginx configuration into the imageCOPY nginx.conf /etc/nginx/nginx.conf# link nginx log files to Docker log collection facilityRUN ln -sf /dev/stdout /var/log/nginx/access.log && \
ln -sf /dev/stderr /var/log/nginx/error.log# expose port 80 - the standard port for webserversEXPOSE 80# and make sure that nginx runs when a container is createdCMD ["nginx", "-g", "daemon off;"]

執行命令進行映象的構建:

docker build -t nginx-from-scratch1.0 .

從頭基於空映象scratch建立一個新的Docker映象

產生的日誌:


從頭基於空映象scratch建立一個新的Docker映象

最後看到映象成功構建的訊息。


從頭基於空映象scratch建立一個新的Docker映象

基於這個名為nginx-from-scratch的映象啟動一個新的nginx容器:


從頭基於空映象scratch建立一個新的Docker映象

localhost:1083, 看到首頁,說明這個新構建的映象工作正常。


從頭基於空映象scratch建立一個新的Docker映象


要獲取更多Jerry的原創文章,請關注公眾號"汪子熙":

從頭基於空映象scratch建立一個新的Docker映象


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24475491/viewspace-2221882/,如需轉載,請註明出處,否則將追究法律責任。

相關文章