某個 Python
項目,基于 Python:3.6
與 Django:1.11
框架開發(fā),希望項目能夠容器化,然后可以通過 docker-compose
等工具編排容器/應(yīng)用,本篇文章的目標是自定義Django基礎(chǔ)鏡像。
網(wǎng)站建設(shè)哪家好,找成都創(chuàng)新互聯(lián)!專注于網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、微信小程序、集團企業(yè)網(wǎng)站建設(shè)等服務(wù)項目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了江州免費建站歡迎大家使用!
與《為什么需要自定義一個基礎(chǔ)鏡像?》文章相同,基礎(chǔ)鏡像作用是為項目鏡像提供支持。它構(gòu)建在 Python
官方鏡像之上,添加項目一些需要的擴展模塊,例如 Django
、pyMySQL
、Gunicorn
等常用模塊,具體以項目實際需求為準。
最后為能夠高效的處理靜態(tài)文件請求,使用 Nginx
反向代理 Django
應(yīng)用,不過這是下一篇文章要講的了,《Django容器(下): 使用Gunicorn管理Django》,敬請期待公眾號每周四 docker專題更新文章。。
容器鏡像: python:3.6
容器系統(tǒng): debian 9 (stretch)
Docker版本: CE - 17.06.0
Docker主機: Ubuntu Server 16.04
tree base/
base/
├── conf
│?? ├── 404.html
│?? ├── default.conf
│?? ├── nginx.conf
│?? ├── requirements.txt
│?? ├── sources.list
│?? ├── ssl
│?? │?? ├── domain.crt
│?? │?? └── domain.key
│?? └── supervisord.conf
└── `Dockerfile`
2 directories, 9 files
cat base/Dockerfile
# start-base
FROM python:3.6
MAINTAINER dongnan #<@微信公眾號:運維錄>
# apt
COPY conf/sources.list /etc/apt/sources.list
RUN apt-get update \
&& apt-get install -y supervisor nginx \
&& apt-get clean \
&& rm -r /var/lib/apt/lists/*
# env
ENV TZ=Asia/Shanghai \
LANG=en_US.UTF-8
# django
COPY conf/requirements.txt /root/
RUN pip --no-cache-dir install -r /root/requirements.txt -i https://mirrors.aliyun.com/pypi/simple/
這個 Dockerfile
很短,因為是項目基礎(chǔ)鏡像,只做一些基礎(chǔ)工作就可以了。
它首先安裝 supervisor nginx
軟件包,然后是設(shè)置容器的環(huán)境變量。
最后使用 pip
安裝項目依賴,django 、pymysql
都在 requirements.txt
這個文件中定義。
docker build -t start-base .
Sending build context to Docker daemon 767kB
Step 1/8 : FROM python:3.6
# ...省略
Successfully built fc3f6f242301
Successfully tagged start-base
docker images --format "{{.Repository}} {{.Tag}}"
start-base latest
最后來總結(jié)下文章中的知識點
項目鏡像
提供支持,并在基礎(chǔ)鏡像之上添加項目代碼,完成項目鏡像構(gòu)建工作。supervisor
在容器中管理 nginx、gunicorn (python WSGI Server)
進程。pip
是 python
包管理工具,該工具提供了對python
包的查找、下載、安裝、卸載的功能。pip -i
選項, 指定倉庫地址,默認為 https://pypi.org/simple,**速度很慢**建議使用國內(nèi)倉庫。參考文章
doker&k8s Qun [703906133]