iT邦幫忙

第 11 屆 iThome 鐵人賽

DAY 20
0

今天要透過Docker來實作一個應用程式
在過去,如果要開始一個新的專案(以python為例),我們會需要安裝python,並且我們的開發環境需要和上現實的環境契合。
但是,有了Docker我們就只要使用可移植的Python映像檔,就可以輕鬆地進行開發,不需要安裝

Dockerfile

Dockerfile是用來定義容器內發生的事情,網路接口和儲存空間等資源的訪問在容器內虛擬化,與系統的其餘部分隔離,並具體說明要“複製”的文件,這樣做之後,就可以期望在Dockerfile中定義的應用程序構建無論在任何地方都能以相同方式運行運行。
建立Dockerfile相當容易,只要到目的路徑,創建一個Dockerfile檔案即可,下方為Dockerfile的範例。

# Use an official Python runtime as a parent image
FROM python:2.7-slim

# Set the working directory to /app
WORKDIR /app

# Copy the current directory contents into the container at /app
COPY . /app

# Install any needed packages specified in requirements.txt
RUN pip install --trusted-host pypi.python.org -r requirements.txt

# Make port 80 available to the world outside this container
EXPOSE 80

# Define environment variable
ENV NAME World

# Run app.py when the container launches
CMD ["python", "app.py"]

應用程序

在相同路徑下創建requirements.txtapp.py

requirements.txt

Flask
Redis

app.py

from flask import Flask
from redis import Redis, RedisError
import os
import socket

# Connect to Redis
redis = Redis(host="redis", db=0, socket_connect_timeout=2, socket_timeout=2)

app = Flask(__name__)

@app.route("/")
def hello():
    try:
        visits = redis.incr("counter")
    except RedisError:
        visits = "<i>cannot connect to Redis, counter disabled</i>"

    html = "<h3>Hello {name}!</h3>" \
           "<b>Hostname:</b> {hostname}<br/>" \
           "<b>Visits:</b> {visits}"
    return html.format(name=os.getenv("NAME", "world"), hostname=socket.gethostname(), visits=visits)

if __name__ == "__main__":
    app.run(host='0.0.0.0', port=80)

建立映像檔

$ docker build --tag=friendlyhello .

檢查映像檔

$ docker image ls

REPOSITORY            TAG                 IMAGE ID
friendlyhello         latest              image_id

執行應用程式

docker run -p 4000:80 friendlyhello

-p會把容器的80port指向機器的4000port,接下來在瀏覽器輸入http://localhost:4000查看app是否成功運行。

to be continued


上一篇
DAY19 --- Docker入門-2
下一篇
DAY21 --- Docker入門-4
系列文
砍掉重練啦! 森林系男孩之後端工程師潛水App挑戰計畫27
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言