2014-06-13 15 views
1

美好的一天!碼頭推送:圖片取決於未經授權的父母

將我的圖像推送到碼頭中心時遇到了一些問題。首先我的軟件版本:

[email protected]:~$ docker version 
Client version: 0.11.1 
Client API version: 1.11 
Go version (client): go1.2.1 
Git commit (client): fb99f99 
Server version: 0.11.1 
Server API version: 1.11 
Git commit (server): fb99f99 
Go version (server): go1.2.1 
[email protected]:~$ 
[email protected]:~$ cat /etc/*release 
PRETTY_NAME="Debian GNU/Linux jessie/sid" 
NAME="Debian GNU/Linux" 
ID=debian 
ANSI_COLOR="1;31" 
HOME_URL="http://www.debian.org/" 
SUPPORT_URL="http://www.debian.org/support/" 
BUG_REPORT_URL="http://bugs.debian.org/" 
[email protected]:~$ uname -a 
Linux debian-8-docker 3.14-1-amd64 #1 SMP Debian 3.14.4-1 (2014-05-13) x86_64 GNU/Linux 
[email protected]:~$ 

所以,首先我拉Ubuntu的鏡像:

$ docker pull ubuntu:12.04 

它陪跑好了,所以我創建容器和安裝Ping實用程序:

$ docker run -i ubuntu:12.04 apt-get install -y inetutils-ping 

之後我承諾改變:

$ docker commit -m 'Installed ping utility to ubuntu' -a 'Vasiliy Ozerov' 9a817769bd9a vozerov/ubuntu-ping:v1 

並試圖推動:

$ docker push vozerov/ubuntu-ping 
The push refers to a repository [vozerov/ubuntu-ping] (len: 1) 
Sending image list 
Pushing repository vozerov/ubuntu-ping (1 tags) 
511136ea3c5a: Image already pushed, skipping 
663644853bf8: Pushing 
2014/06/13 19:07:16 HTTP code 400 while uploading metadata: {"error": "Image depends on an unauthorized parent"} 

泊塢窗登錄成功執行:

$ docker login 
Username (vozerov): 
Login Succeeded 

所以,我真的不明白這是什麼。

請你能幫幫我嗎?謝謝。

+0

我想這可能是今天剛剛開始的。我有同樣的問題,並來到這裏尋找答案。我昨天推出了基本相同的圖片,沒有任何問題。我改變的唯一的東西是工作目錄的內容和一個npm包安裝。 –

回答

相關問題