Docker有哪些常用的命令

這篇文章主要介紹“Docker有哪些常用的命令”,在日常操作中,相信很多人在Docker有哪些常用的命令問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Docker有哪些常用的命令”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

讓客戶滿意是我們工作的目標,不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價值的長期合作伙伴,公司提供的服務(wù)項目有:域名申請、虛擬主機、營銷軟件、網(wǎng)站建設(shè)、烏蘭網(wǎng)站維護、網(wǎng)站推廣。

Docker 常用命令詳細整理

查看Docker信息(version、info)

# 查看docker版本
$docker version

# 顯示docker系統(tǒng)的信息
$docker info

對image的操作(search、pull、images、rmi、history)

# 檢索image
$docker search image_name

# 下載image
$docker pull image_name

# 列出鏡像列表; -a, --all=false Show all images; --no-trunc=false Don't truncate output; -q, --quiet=false Only show numeric IDs
$docker images

# 刪除一個或者多個鏡像; -f, --force=false Force; --no-prune=false Do not delete untagged parents
$docker rmi image_name

# 顯示一個鏡像的歷史; --no-trunc=false Don't truncate output; -q, --quiet=false Only show numeric IDs
$docker history image_name

啟動容器(run)

docker容器可以理解為在沙盒中運行的進程。這個沙盒包含了該進程運行所必須的資源,包括文件系統(tǒng)、系統(tǒng)類庫、shell 環(huán)境等等。但這個沙盒默認是不會運行任何程序的。你需要在沙盒中運行一個進程來啟動某一個容器。這個進程是該容器的唯一進程,所以當(dāng)該進程結(jié)束的時候,容器也會完全的停止。

# 在容器中運行"echo"命令,輸出"hello word"
$docker run image_name echo "hello word"

# 交互式進入容器中
$docker run -i -t image_name /bin/bash


# 在容器中安裝新的程序
$docker run image_name apt-get install -y app_name

Note: 在執(zhí)行apt-get 命令的時候,要帶上-y參數(shù)。如果不指定-y參數(shù)的話,apt-get命令會進入交互模式,需要用戶輸入命令來進行確認,但在docker環(huán)境中是無法響應(yīng)這種交互的。apt-get 命令執(zhí)行完畢之后,容器就會停止,但對容器的改動不會丟失。

查看容器(ps)

# 列出當(dāng)前所有正在運行的container
$docker ps
# 列出所有的container
$docker ps -a
# 列出最近一次啟動的container
$docker ps -l

保存對容器的修改(commit)

當(dāng)你對某一個容器做了修改之后(通過在容器中運行某一個命令),可以把對容器的修改保存下來,這樣下次可以從保存后的最新狀態(tài)運行該容器。

# 保存對容器的修改; -a, --author="" Author; -m, --message="" Commit message
$docker commit ID new_image_name

Note: image相當(dāng)于類,Container相當(dāng)于實例,不過可以動態(tài)給實例安裝新軟件,然后把這個container用commit命令固化成一個image。

對容器的操作(rm、stop、start、kill、logs、diff、top、cp、restart、attach)

# 刪除所有容器
$docker rm `docker ps -a -q`

# 刪除單個容器; -f, --force=false; -l, --link=false Remove the specified link and not the underlying container; -v, --volumes=false Remove the volumes associated to the container
$docker rm Name/ID

# 停止、啟動、殺死一個容器
$docker stop Name/ID
$docker start Name/ID
$docker kill Name/ID

# 從一個容器中取日志; -f, --follow=false Follow log output; -t, --timestamps=false Show timestamps
$docker logs Name/ID

# 列出一個容器里面被改變的文件或者目錄,list列表會顯示出三種事件,A 增加的,D 刪除的,C 被改變的
$docker diff Name/ID

# 顯示一個運行的容器里面的進程信息
$docker top Name/ID

# 從容器里面拷貝文件/目錄到本地一個路徑
$docker cp Name:/container_path to_path
$docker cp ID:/container_path to_path

# 重啟一個正在運行的容器; -t, --time=10 Number of seconds to try to stop for before killing the container, Default=10
$docker restart Name/ID

# 附加到一個運行的容器上面; --no-stdin=false Do not attach stdin; --sig-proxy=true Proxify all received signal to the process
$docker attach ID

Note: attach命令允許你查看或者影響一個運行的容器。你可以在同一時間attach同一個容器。你也可以從一個容器中脫離出來,是從CTRL-C。

保存和加載鏡像(save、load)

當(dāng)需要把一臺機器上的鏡像遷移到另一臺機器的時候,需要保存鏡像與加載鏡像。

# 保存鏡像到一個tar包; -o, --output="" Write to an file
$docker save image_name -o file_path
# 加載一個tar包格式的鏡像; -i, --input="" Read from a tar archive file
$docker load -i file_path

# 機器a
$docker save image_name > /home/save.tar
# 使用scp將save.tar拷到機器b上,然后:
$docker load < /home/save.tar

登錄registry server(login)

# 登陸registry server; -e, --email="" Email; -p, --password="" Password; -u, --username="" Username
$docker login

發(fā)布image(push)

# 發(fā)布docker鏡像
$docker push new_image_name

根據(jù)Dockerfile 構(gòu)建出一個容器

#build
   --no-cache=false Do not use cache when building the image
   -q, --quiet=false Suppress the verbose output generated by the containers
   --rm=true Remove intermediate containers after a successful build
   -t, --tag="" Repository name (and optionally a tag) to be applied to the resulting image in case of success
$docker build -t image_name Dockerfile_path

到此,關(guān)于“Docker有哪些常用的命令”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

當(dāng)前題目:Docker有哪些常用的命令
瀏覽路徑:http://muchs.cn/article4/gjscoe.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供品牌網(wǎng)站建設(shè)、ChatGPT、虛擬主機、網(wǎng)站收錄響應(yīng)式網(wǎng)站、域名注冊

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

h5響應(yīng)式網(wǎng)站建設(shè)