2017-08-19 81 views
1

我想在我的碼頭實例中看到圖像列表,但我一直收到一個空列表。爲什麼碼頭圖像列表爲空?

我跑

docker run busybox:latest echo hello 

它打印hello。我跑

docker images list --all 

它打印

REPOSITORY   TAG     IMAGE ID   CREATED    SIZE 

同樣的事情發生,如果我嘗試docker load -i myimage.tar和列表。爲什麼不顯示任何圖像?


docker version 
Client: 
Version:  17.06.1-ce 
API version: 1.30 
Go version: go1.8.3 
Git commit: 874a737 
Built:  Thu Aug 17 22:51:12 2017 
OS/Arch:  linux/amd64 

Server: 
Version:  17.06.1-ce 
API version: 1.30 (minimum version 1.12) 
Go version: go1.8.3 
Git commit: 874a737 
Built:  Thu Aug 17 22:50:04 2017 
OS/Arch:  linux/amd64 
Experimental: false 

回答

3

嘗試

docker images

我覺得泊塢窗客戶端試圖通過令牌list來過濾,因此沒有發現這個名字標準的任何圖像。

2

另一個可供選擇的答案是輸入docker image ls

相關問題