docker 常用命令 system篇

2022-08-19 02:33:10 字數 1030 閱讀 9397

1.檢視docker 空間使用情況

[root@worker1 ~]# docker system df

type total active size reclaimable

images 30

319.9mb 319.9mb (100%)

containers 00

0b 0b

local volumes 10

156.5kb 156.5kb (100%)

build cache

00 0b 0b

2.檢視實時事件(例如容器建立,刪除等均會實時顯示)

[root@worker1 ~]# docker system events

3.檢視docker 系統資訊(同docker info)

[root@worker1 ~]# docker system info

4.docker清理(清理停止的容器,沒用容器使用的網路,映象,快取)

[root@worker1 ~]# docker system prune

warning!this will remove:

-all stopped containers

-all networks not used by at least one container

-all dangling images

-all dangling build cache

are you sure you want to continue? [y/n] y

total reclaimed space: 0b

[root@worker1 ~]#

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...