有人能帮我吗?我试图建立并发布我的图像到一个私人码头注册:
kind: pipeline
name: default
steps:
- name: docker
image: plugins/docker
settings:
username: ****
password: ****
repo: https://*****.com:5000/myfirstimage
registry: https://*****.com:5000
tags:
- latest
但是得到了下一个错误:
Error parsing reference: "https://*****.com:5000/myfirstimage:latest" is not a valid repository/tag: invalid reference format
15921 time="2020-10-18T17:52:20Z" level=fatal msg="exit status 1"
但是,当我尝试手动推动时,一切都没问题。我做错了什么?如有任何帮助,我们将不胜感激。
在docker注册表和repo的地址中包含方案并不常见。
尝试像在中那样写入那些没有https://
的地址
repo: <registry-hostname>.com:5000/myrepo/myfirstimage
registry: <registry-hostname>.com:5000