Tag: 树木

Docker推送错误与无效标记或引用

我有一个Travis CI构build,试图推送到dockerregistry,这是我在构build日志中看到的: [info] Built image repo.treescale.com/[secure]/inland24/plant-simulator:1.0-SNAPSHOT 但下一行,我看到以下内容: Error parsing reference: "/:" is not a valid repository/tag: invalid reference format 这就是我的docker push命令: docker push $DOCKER_REGISTRY_URL/$APPLICATION_NAME:$IMAGE_VERSION_DEV; 这里是参数: – APPLICATION_NAME = [secure]/inland24/plant-simulator – IMAGE_VERSION_DEV = 1.0-SNAPSHOT – DOCKER_REGISTRY_URL = repo.treescale.com 假设[secure]已parsing为正确的用户名! 我得到了什么样的错误,以及如何解决? 我试图列出所有的图像,我可以看到我的图像存在于正在运行构build的本地机器上: REPOSITORY TAG IMAGE ID CREATED SIZE repo.treescale.com/[secure]/inland24/plant-simulator 1.0-SNAPSHOT 34842cf7482e Less than a second ago 225 […]