2017-09-11 11 views
0

コードシップで遊んでいます。タグがローカルに存在しない画像

私のプライベートレジストリへのドッキングウィンドウのイメージをプッシュしようcodeshipとき、私はエラーがあります:

Build Error: Image Push error for image myprivateregistry.com/sancho/test:latest, An image does not exist locally with the tag: myprivateregistry.com/sancho/test 


2017-09-11T20:08:44.814Z test build/pull started 
2017-09-11T20:09:23.019Z test build/pull finished successfully 
2017-09-11T20:09:23.019Z test build/push started for test 
2017-09-11T20:09:23.156Z test The push refers to a repository [myprivateregistry.com/sancho/test] 

私codeship-steps.yml

- service: test 
    type: push 
    image_name: myprivateregistry.com/sancho/test 
    registry: https://myprivateregistry.com 
    encrypted_dockercfg_path: dockercfg.encrypted 

は、あなたが私のconfigruation内の任意のエラーを参照していますか?

答えて

1

私は

image_tag: latest 

を追加し、それが仕事します!

関連する問題