真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么運(yùn)行docker容器

本篇內(nèi)容介紹了“怎么運(yùn)行docker容器”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

目前成都創(chuàng)新互聯(lián)公司已為上1000家的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)站空間、綿陽服務(wù)器托管、企業(yè)網(wǎng)站設(shè)計(jì)、棗莊網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。

 首先我們查看下當(dāng)前本地docker鏡像:

[root@xinsz10 ~]# docker images
REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE

可以看到當(dāng)前是沒有任何鏡像的,然后我們執(zhí)行第二條命令,來拉取一個(gè)hello-world鏡像

[root@xinsz10 ~]# docker pull hello-world
Using default tag: latest   

#相當(dāng)于給我們的helloworld后面加 了一個(gè):latest
latest: Pulling from library/hello-world  

#正在拉取library下的一個(gè)hello-world
Digest: sha256:b2ba691d8aac9e5ac3644c0788e3d3823f9e97f757f01d2ddc6eb5458df9d801
Status: Image is up to date for hello-world:latest

查看是否下載完成  也就是查看本地鏡像

[root@xinsz10 ~]# docker images
REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
hello-world         latest              05a3bd381fc2        4 weeks ago         1.84kB

注:  REPOSITORY 是鏡像名

       IMAGE ID 是64位的字符串,這里自動(dòng)被截掉了,只顯示了16位,可以唯一標(biāo)識(shí)我們的鏡像

       CREATED   修改時(shí)間

        SIZE    大小

鏡像的名字在網(wǎng)站上都可以查到,docker 提供了一個(gè)鏡像倉庫,hub.docker.com    默認(rèn)到這里下載

鏡像下載完成后,我們來看看如何運(yùn)行

具體命令:  docker  run  +選項(xiàng)  IMAGE [:TAG] [命令] [ARG..]
[root@xinsz10 ~]# docker run hello-world
WARNING: IPv4 forwarding is disabled. Networking will not work.

Hello from Docker!
This message shows that your installation appears to be working correctly.  #如果這個(gè)消息顯示出來說明你的安裝已經(jīng)OK了

下面這些英文,是在告訴我們docker運(yùn)行時(shí)經(jīng)過了那幾個(gè)步驟
To generate this message, Docker took the following steps:
 1. The Docker client contacted the Docker daemon.
 2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
 3. The Docker daemon created a new container from that image which runs the
    executable that produces the output you are currently reading.
 4. The Docker daemon streamed that output to the Docker client, which sent it
    to your terminal.

To try something more ambitious, you can run an Ubuntu container with:
 $ docker run -it ubuntu bash

Share images, automate workflows, and more with a free Docker ID:
 https://cloud.docker.com/

For more examples and ideas, visit:
 https://docs.docker.com/engine/userguide/
根據(jù)上面彈出的英文提示,(關(guān)于docker執(zhí)行docker run時(shí)所做的那些操作)
我們用示意圖來看看docker pull和docker run的整個(gè)流程:

怎么運(yùn)行docker容器

左邊兩個(gè)是在本機(jī)運(yùn)行的,   最右面是遠(yuǎn)程鏡像

docker pull會(huì)檢查本機(jī)images里鏡像是否存在,如果存在且版本正確,就直接用,如果不存在就從docker 倉庫下載回來使用.

docker run也是一樣,當(dāng)執(zhí)行這個(gè)命令時(shí)候,也需要到本地的images檢查是否存在,不存在也會(huì)跟docker pull一樣到遠(yuǎn)端去拉取鏡像.

“怎么運(yùn)行docker容器”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!


網(wǎng)站名稱:怎么運(yùn)行docker容器
文章地址:http://weahome.cn/article/gccjso.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部