您好,登錄后才能下訂單哦!
本篇內(nèi)容介紹了“怎么運行docker容器”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠?qū)W有所成!
首先我們查看下當前本地docker鏡像:
[root@xinsz10 ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
可以看到當前是沒有任何鏡像的,然后我們執(zhí)行第二條命令,來拉取一個hello-world鏡像
[root@xinsz10 ~]# docker pull hello-world
Using default tag: latest
#相當于給我們的helloworld后面加 了一個:latest
latest: Pulling from library/hello-world
#正在拉取library下的一個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位的字符串,這里自動被截掉了,只顯示了16位,可以唯一標識我們的鏡像
CREATED 修改時間
SIZE 大小
鏡像的名字在網(wǎng)站上都可以查到,docker 提供了一個鏡像倉庫,hub.docker.com 默認到這里下載
鏡像下載完成后,我們來看看如何運行
具體命令: docker run +選項 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. #如果這個消息顯示出來說明你的安裝已經(jīng)OK了
下面這些英文,是在告訴我們docker運行時經(jīng)過了那幾個步驟
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ù)上面彈出的英文提示,(關于docker執(zhí)行docker run時所做的那些操作)
我們用示意圖來看看docker pull和docker run的整個流程:
左邊兩個是在本機運行的, 最右面是遠程鏡像
docker pull會檢查本機images里鏡像是否存在,如果存在且版本正確,就直接用,如果不存在就從docker 倉庫下載回來使用.
docker run也是一樣,當執(zhí)行這個命令時候,也需要到本地的images檢查是否存在,不存在也會跟docker pull一樣到遠端去拉取鏡像.
“怎么運行docker容器”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關的知識可以關注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。