3 docker常用命令

2021-10-25 05:06:46 字數 752 閱讀 2533

docker基本命令

docker顯像管理

docker容器管理

[root@moli ~]

# docker exec -it busybox ls // i互動式 t終端方式開啟 busybox乙個容器 ls命令

bin dev etc home proc root sys tmp usr var

[root@moli ~]

# docker exec -it busybox bash // busybox中沒有bash

oci runtime exec failed: exec failed: container_linux.go:345: starting container process caused "exec: \"bash\": executable file not found in $path"

: unknown

[root@moli ~]

# docker exec -it ping sh // busybox中有sh

/ #

[root@moli ~]

# docker cp ping:/etc/hosts . // 複製檔案到當前目錄

[root@moli ~]

# ls

hosts

檢視容器內檔案結構:docker diff busybox // 檢視改動資訊

3 Docker常用命令

2.容器 ps 相關命令 停止與啟動容器 檔案拷貝 目錄掛載 檢視容器ip位址 刪除容器 檢視映象這些映象都是儲存在docker宿主機的 var lib docker目錄下 docker images repository tag image id created size 映象名稱 映象標籤 映象...

docker系列 3 Docker的常用命令

操作指令 檢視docker版本 docker version 檢視docker概要資訊 docker info 檢視docker幫助文件 docker help 2.1 搜尋映象 name 映象名稱 description 映象描述 official 是否官方 automated 自動構建,表示該映...

Docker實踐3 Docker常用命令 未完

檢視容器及執行程序 docker ps 檢視容器內部資訊 docker inspect container id 進入容器 docker attach container id 退出容器 docker kill container id 檢視日誌 docker logs container id 刪...