溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么制作第一個docker鏡像

發(fā)布時間:2021-10-20 09:17:31 來源:億速云 閱讀:174 作者:柒染 欄目:大數(shù)據(jù)

本篇文章給大家分享的是有關怎么制作第一個docker鏡像,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

首先創(chuàng)建一個新目錄用于存放我們制作鏡像所需的文件 

進入到新目錄中 執(zhí)行touch Dockerfile 創(chuàng)建一個Dockerfile文件,Dockerfile 定義了容器運行的需要的環(huán)境,網(wǎng)絡端口、磁盤資源、要執(zhí)行的命令等等。

復制以下內(nèi)容到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 8081

# Define environment variable
ENV NAME World

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

在新目錄下執(zhí)行命令 touch requirements.txt復制以下內(nèi)容

Flask
Redis

在新目錄下執(zhí)行命令 touch app.py復制以下內(nèi)容

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 = "<h4>Hello {name}!</h4>" \
           "<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=8081)

執(zhí)行命令 docker build --tag=helloworld:v0.0.1 . 構建你的第一個docker鏡像,別忘了命令的最后一個. 。

通過下面命令查看您剛剛制作的鏡像

# docker image ls
REPOSITORY           TAG                 IMAGE ID            CREATED             SIZE
helloworld           v0.0.1              f471662fe76e        2 minutes ago       131MB

該鏡像通過Python代碼啟了一個簡單的web服務,下面開始運行您的鏡像

#docker run -p 8099:8081 helloworld:v0.0.1

 * Serving Flask app "app" (lazy loading)
 * Environment: production
   WARNING: This is a development server. Do not use it in a production deployment.
   Use a production WSGI server instead.
 * Debug mode: off
 * Running on http://0.0.0.0:8081/ (Press CTRL+C to quit)

看到上面的輸出說明您的docker 鏡像 helloworld 啟動成功,您可以通過curl命令測試容器是否正在正常運行,docker run -p 實際上是將本地的8099端口映射到容器的8081端口。

# curl http://localhost:8099
<h4>Hello World!</h4><b>Hostname:</b> a64e25c2a522<br/><b>Visits:</b> <i>cannot connect to Redis, counter disabled</i>

您可以通過一下命令查看當前機器正在運行的容器

# docker container ls
CONTAINER ID        IMAGE               COMMAND             CREATED             STATUS              PORTS                    NAMES
a64e25c2a522        helloworld:v0.0.1   "python app.py"     7 minutes ago       Up 7 minutes        0.0.0.0:8099->8081/tcp   frosty_newton

以上就是怎么制作第一個docker鏡像,小編相信有部分知識點可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI