2015-12-17 92 views
1

我試圖拉我的碼頭工人圖片:碼頭工人註冊表:無法找到圖像

Trying to pull repository myrepo:5000/ubuntu ... not found     
Error: image ubuntu:latest not found 

的圖像在我的回購:

[email protected]:/var/lib/registry/docker/registry/v2/repositories# ls 
busybox ubuntu 

的日誌顯示:

10.0.0.xx - - [17/Dec/2015:10:18:55 +0000] "GET /v2/ HTTP/1.1" 200 2 "" "docker/1.8.2 go/go1.4.2 kernel/3.10.0-229.20.1.el7.x86_64 os/linux arch/amd64" 
10.0.0.xx - - [17/Dec/2015:10:18:55 +0000] "GET /v1/repositories/ubuntu/images HTTP/1.1" 404 19 "" "docker/1.8.2 go/go1.4.2 kernel/3.10.0-229.20.1.el7.x86_64 os/linux arch/amd64" 

因此,我在搜索圖像時遇到了404-錯誤,但它在/v1中搜索,而圖像的路徑描述爲/v2

這是問題,我該如何解決它?

+0

您推送到註冊表的「ubuntu」映像是否有「最新」標記? – tianon

+0

(可以通過點擊http:// myrepo:5000/v2/ubuntu/tags/list輕鬆檢查) – tianon

回答

1

您的私人存儲庫密碼是否受到保護?當真正的問題是用戶沒有通過身份驗證時,我發現404上出現了錯誤,即'docker login https://myrepo:5000'

相關問題