Docker常用命令

2021-10-06 08:52:33 字數 1369 閱讀 8277

docker version     #檢視docker版本

docker info #顯示docker系統資訊,包括映象和容器的數量

docker --help #幫助命令

檢視主機上所有映象
docker images

#repository tag image id created size

# repository 映象的倉庫源

# tag 標籤

# image id 映象id

# created 映象建立時間

# size 映象的大小

檢視主機上所有映象可選項

options:

-a,--all 列出所有映象

--digests show digests

-f,--filter filter filter output based on conditions provided

--format string pretty-print images using a go template

--no-trunc don't truncate output

-q,--quiet 只顯示映象id

搜尋映象 docker search

docker search --help

options: #可選項

-f,--filter filter filter output based on conditions provided

--format string pretty-print search using a go template

--limit int max number of search results (

default25)

--no-trunc don't truncate output

拉取服務 docker pull

docker pull --help #檢視幫助
刪除映象 docker rim

docker rmi -f 映象id  #刪除指定的映象

docker rmi -f 映象id 映象id 映象id 映象id #刪除多個映象

docker rmi -f $(docker images -aq) #刪除所有映象

docker pull centos

docker常用命令 Docker 常用命令筆錄

格式docker run 選項 映象 命令 引數.示例docker run it rm ubuntu 16.04 bash 示例解釋 it 這是兩個引數,乙個是 i,表示互動式操作,乙個是 t表示終端 rm 這個引數是說容器退出後隨之將其刪除 ubuntu 16.04 這是指用ubuntu 16.0...

docker常用命令

1.刪除已退出的容器 docker rm docker ps a q 2.強制刪除所有容器 docker rm f docker ps a 3.docker attach 進不去的時候可以用docker exec it containerid bin bash docker run it ubunt...

docker常用命令

docker常用命令 1.進入docker容器 sudo docker run it insaneworks centos bin bash 使用ctrl p或者ctrl q可以進入和退出容器 2.拉去乙個映象 docker pull insaneworks centos 檢視所有的映象 docke...