尝试开始使用。。
我创建了一个图像(Nodejs)并将其推送到Bluemix。在Bluemix中,我创建了一个容器,并成功了。
然后我创建了一个爵士乐项目。。。并使用DevOps管道(IBM容器服务)来构建应用程序。我想做的是自动构建和部署这个应用程序。
现在。。我应该把什么作为图像名称?我本以为这是我已经推送的图像。。但也许不是。然后我把它改成了"mynewapp"之类的东西,但这也不起作用。
当我使用现有图像时,我得到的错误是:(图像名称为test920)不确定为什么它添加了12…的标签
The desired image repository name will be registry.ng.bluemix.net/jytestcontainer/test920:12
Initialization complete
Number of images: 0 and Image limit: 5
The number of images are less than the image limit
Init runtime of 3m 10s
total 12
Starting build script
No unit tests cases have been checked in
Building registry.ng.bluemix.net/jytestcontainer/test920:12
zipped tar size: 1185166
Posting 1185166 bytes... It may take a while...
Command failed with container cloud service
{
"code": "IC5000E",
"description": **"Sorry, an error occurred on our side. Please reference the problem using the provided incident ID",**
"incident_id": "b4b88aeb12e5a4d9",
"name": "DefaultMessage",
"rc": "500",
"type": "General"
}
当我使用一个新的图像名称时——一个不存在的名称。。我得到:
Building registry.ng.bluemix.net/jytestcontainer/**nodecontainer**:15
zipped tar size: 1185855
Posting 1185855 bytes... It may take a while...
Command failed with container cloud service
{
"code": "IC5000E",
"description": "Sorry, an error occurred on our side. Please reference the problem using the provided incident ID",
"incident_id": "b520b2ea4a115bbd",
"name": "DefaultMessage",
"rc": "500",
"type": "General"
}
"ice build --pull --tag registry.ng.bluemix.net/jytestcontainer/nodecontainer:15 /home/jenkins/workspace/3f72adfe-59e3-b729-ef87-6316c8d67561/806f147e-9244-4b69-849e-abce3b0def1b" did not return successfully.
所以问题是…这个过程会首先建立一个新的形象吗?如果是的话…为什么它不适用于一个不存在的图像名称?
如果它需要一个现有的映像。。为什么它使用一个不存在的标签?
任何建议都将不胜感激。。。。
干杯
这些示例脚本对我来说很好。您可以在这个公共示例中检查使用情况。