今天要透過Docker來實作一個應用程式
在過去,如果要開始一個新的專案(以python為例),我們會需要安裝python,並且我們的開發環境需要和上現實的環境契合。
但是,有了Docker我們就只要使用可移植的Python映像檔,就可以輕鬆地進行開發,不需要安裝
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.txt
和app.py
Flask
Redis
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是否成功運行。