91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

怎么制作第一個docker鏡像

發布時間:2021-10-20 09:17:31 來源:億速云 閱讀:175 作者:柒染 欄目:大數據

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

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

進入到新目錄中 執行touch 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 8081

# Define environment variable
ENV NAME World

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

在新目錄下執行命令 touch requirements.txt復制以下內容

Flask
Redis

在新目錄下執行命令 touch 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 = "<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)

執行命令 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鏡像,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

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

AI

嘉义县| 松滋市| 双峰县| 勃利县| 乌兰察布市| 永宁县| 开平市| 荣成市| 赤峰市| 温宿县| 瑞昌市| 南投市| 仙游县| 开远市| 东阳市| 苍溪县| 岳池县| 阿坝| 香河县| 长宁区| 凤凰县| 钟祥市| 红原县| 西峡县| 高台县| 五指山市| 襄垣县| 辉南县| 金平| 柳江县| 兰考县| 兴隆县| 墨竹工卡县| 平塘县| 昌邑市| 林甸县| 杂多县| 饶河县| 永宁县| 尚义县| 泰来县|