有人能帮帮我吗?我试图构建我的图像并将其发布到一个私人的码头注册中心:
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"但是,当我尝试手动推杆时,一切都没问题。我做错了什么?会很感激你的帮助。
发布于 2020-10-18 19:22:19
将该计划包含在停靠者注册中心和回购协议的地址中并不常见。
尝试在不使用https://的情况下写入这些地址,如
repo: <registry-hostname>.com:5000/myrepo/myfirstimage
registry: <registry-hostname>.com:5000https://stackoverflow.com/questions/64417362
复制相似问题