目錄
- 1. Dockerfile簡介
- 2. Dockerfile相關指令
- 3. Dockerfile編寫
- 4. requirements.txt
- 5. build構建鏡像文件
- 6. run運行容器
1. Dockerfile簡介
簡單來說,Dockerfile就是把我們安裝環境的每個步驟和指令,放到一個文件,最后一鍵執行,最后做成一個你想要的環境。
Dockerfile是用來構建Docker鏡像的構建文件,是由一系列命令和參數構成的腳本。
Docker構建三步曲:
- 編寫dockerfile文件
- docker build 構建image鏡像文件
- docker run 運行容器
2. Dockerfile相關指令
Dockerfile 是一個包含創建鏡像所有命令的文本文件,通過docker build命令可以根據 Dockerfile 的內容構建鏡像,
在介紹如何構建之前先介紹下 Dockerfile 的基本語法結構。
Dockerfile 有以下指令選項:
- FROM 基礎鏡像,當前新鏡像是基于哪個鏡像的
- MAINTAINER 鏡像維護者的姓名和郵箱地址
- RUN 容器構建時需要運行的命令
- CMD 指定一個容器啟動時要運行的命令。
dockerfile中可以有多個CMD指令,但只有最后一個生效,CMD會被docker run之后的參數替換。 - EXPOSE 當前容器對外暴露的端口號
- ENV 用來在構建鏡像過程中設置環境變量
- ADD 將宿主機目錄下的文件拷貝到鏡像里面并且ADD命令會自動處理URL和解壓tar壓縮包
- COPY COPY:類似ADD,拷貝文件和目錄到鏡像中,但是它只是拷貝,不會自動處理URL和解壓tar壓縮包。
- ENTRYPOINT 指定一個容器啟動時要運行的命令。
- ENTRYPOIT的目的和CMD一樣,都是在指定容器啟動程序及參數。
- VOLUME 容器數據卷,用于數據保存和持久化工作
- USER 指定運行容器時的用戶名或UID,后續的 RUN 也會使用指定用戶
- WORKDIR 指定在容器創建后,終端默認登錄進來工作目錄,一個落腳點
- ONBUILD 當構建一個被繼承的Dockerfile時運行命令,父鏡像在被子繼承后,父鏡像的onbuild被觸發。
3. Dockerfile編寫
在當前目錄新建一個文件夾docker-run, cd進入到文件夾,touch新建一個Dockerfile,然后vi打開文件,開始編輯
[root@yoyo ~]# mkdir docker-run [root@yoyo ~]# cd docker-run/ [root@yoyo docker-run]# touch Dockerfile [root@yoyo docker-run]# vi Dockerfile
編輯內容如下:
# 更新pip RUN pip install --upgrade pip # 工作目錄 WORKDIR /code ADD . /code # pip安裝依賴包 RUN pip install -r requirements.txt # 傳遞參數 ENTRYPOINT ["pytest"] # 默認顯示help幫助信息 CMD ["--help"]
4. requirements.txt
requirements.txt是python的相關依賴包, 可以通過freeze命令生成
pip3 freeze >requirements.txt
[root@yoyo docker-run]# cat requirements.txt APScheduler==3.5.3 asn1crypto==0.24.0 atomicwrites==1.3.0 attrs==18.2.0 backports.csv==1.0.7 bcrypt==3.1.7 beautifulsoup4==4.7.1 cached-property==1.5.1 certifi==2018.11.29 cffi==1.12.3 chardet==3.0.4 cryptography==2.7 DBUtils==1.3 defusedxml==0.5.0 diff-match-patch==20181111 Django==2.1.4 django-bootstrap3==11.0.0 django-crispy-forms==1.7.2 django-formtools==2.1 django-import-export==1.2.0 django-ranged-response==0.2.0 django-reversion==3.0.3 django-simple-captcha==0.5.10 django-stdimage==4.0.1 docker==3.7.3 docker-compose==1.24.1 docker-pycreds==0.4.0 dockerpty==0.4.1 docopt==0.6.2 et-xmlfile==1.0.1 future==0.17.1 httplib2==0.12.1 idna==2.7 jdcal==1.4 jsonschema==2.6.0 more-itertools==6.0.0 mysqlclient==1.4.2.post1 odfpy==1.4.0 openpyxl==2.6.1 paramiko==2.6.0 Pillow==5.4.1 pluggy==0.6.0 progressbar2==3.39.3 py==1.7.0 pycparser==2.19 pymssql==2.1.4 PyMySQL==0.9.3 PyNaCl==1.3.0 pytest==3.6.3 python-utils==2.3.0 pytz==2018.7 PyYAML==3.13 requests==2.20.1 six==1.12.0 soupsieve==1.7.3 tablib==0.13.0 texttable==0.9.1 tzlocal==1.5.1 urllib3==1.24.1 websocket-client==0.56.0 xlrd==1.2.0 xlwt==1.3.0
5. build構建鏡像文件
docker build 命令用于使用 Dockerfile 創建鏡像。OPTIONS說明:
- -f :指定要使用的Dockerfile路徑;
- -pull :嘗試去更新鏡像的新版本;
- -quiet, -q :安靜模式,成功后只輸出鏡像 ID;
- -tag, -t: 鏡像的名字及標簽,通常 name:tag 或者 name 格式;可以在一次構建中為一個鏡像設置多個標簽。
-t參數設置鏡像名稱yoyo_pytes和tag標簽名稱v1,注意最后面有個點.
docker build -t yoyo_pytest:v1 .
[root@yoyo docker-run]# docker build -t yoyo_pytest:v1 . Sending build context to Docker daemon 11.78kB Step 1/8 : FROM python:3.6 ---> cfcdf565ff94 Step 2/8 : MAINTAINER yoyo <[email protected]> ---> Using cache ---> f523b919fcf9 Step 3/8 : RUN pip install --upgrade pip ---> Using cache ---> 3399b50dab4e Step 4/8 : WORKDIR /code ---> Using cache ---> 7223a20e17fd Step 5/8 : ADD . /code ---> 650b554ccd6c Step 6/8 : RUN pip install -r requirements.txt ---> Running in 0e49d444f7d8
運行過程中可以看到按步驟運行,如:Step 1/8
運行完成后,可以通過docker images查看生成的鏡像
[root@yoyo docker-run]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE yoyo_pytest v1 6b4267ce7ac4 21 seconds ago 1.02GB [root@yoyo docker-run]#
6. run運行容器
在當前目錄新建一個test_h.py文件,寫入pytest測試腳本
import pytest def test_one(): print("正在執行----test_one") x = "this" assert 'h' in x def test_two(): print("正在執行----test_two") x = "hello" assert x def test_three(): print("正在執行----test_three") a = "hello" b = "hello world" assert a in b if __name__ == "__main__": pytest.main(["-s", "test_h.py"])
使用docker run運行容器
- -it -t讓docker分配一個偽終端并綁定到容器的標準輸入上, -i則讓容器的標準輸入保持打開.
- -rm 容器退出時,自動清除容器。
- -rm選項不能與-d同時使用
- -v 將容器的工作目錄/code掛載到宿主機的$PWD,也就是當前目錄
- yoyo_pytest:v1 容器名稱和tag名稱
- test_h.py 后面跟著需要執行的腳本名稱
[root@yoyo docker-run]# docker run -it --rm -v "$PWD":/code yoyo_pytest:v1 test_h.py -s ================================================================== test session starts ================================================================== platform linux -- Python 3.6.9, pytest-3.6.3, py-1.7.0, pluggy-0.6.0 rootdir: /code, inifile: collected 3 items test_h.py 正在執行----test_one .正在執行----test_two .正在執行----test_three . =============================================================== 3 passed in 0.01 seconds