在 IBM Container 上创建 IBM MobileFirst 映像时出现问题
Issue while creating IBM MobileFirst image on IBM Container
我们正尝试按照以下 MobileFirst 容器教程为 bluemix 创建 IBM MobileFirst 容器:https://mobilefirstplatform.ibmcloud.com/labs/administrators/7.1/bluemix/
根据 tutorial/video 我们创建了 MobileFirst Analytic 服务器并尝试使用 prepareserver.sh 脚本创建 MobileFirst 服务器映像,其中它给我一个错误,指出 repository/tag 不是有效。
我尝试使用 Dockerfile 创建图像,但我仍然遇到同样的问题。
@srujan reddy - 发生了两件事之一。命名空间 registry.ng.bluemix.net/parthotechnologies 不存在。或者您无权访问它。
运行 cf 目标和 :
检查您是否已登录到 API 端点:https://api.ng.bluemix.net . (Accidentally you might have logged in to https://api.eu-gb.bluemix.net )
检查您是否登录了正确的组织。 registry 命名空间对于一个组织是唯一的。
问题出在您的图片名称中的大写字母。图像名称的存储库部分(在您的例子中,MobiGOVServer
)必须仅包含小写字母、数字和分隔符。
标签(在您的例子中,latest
)是图像名称中唯一允许使用大写字母的部分。
有关详细信息,请参阅 docker tag reference。
请使用小写图像名称重试构建。
我们正尝试按照以下 MobileFirst 容器教程为 bluemix 创建 IBM MobileFirst 容器:https://mobilefirstplatform.ibmcloud.com/labs/administrators/7.1/bluemix/
根据 tutorial/video 我们创建了 MobileFirst Analytic 服务器并尝试使用 prepareserver.sh 脚本创建 MobileFirst 服务器映像,其中它给我一个错误,指出 repository/tag 不是有效。
我尝试使用 Dockerfile 创建图像,但我仍然遇到同样的问题。
@srujan reddy - 发生了两件事之一。命名空间 registry.ng.bluemix.net/parthotechnologies 不存在。或者您无权访问它。
运行 cf 目标和 :
检查您是否已登录到 API 端点:https://api.ng.bluemix.net . (Accidentally you might have logged in to https://api.eu-gb.bluemix.net )
检查您是否登录了正确的组织。 registry 命名空间对于一个组织是唯一的。
问题出在您的图片名称中的大写字母。图像名称的存储库部分(在您的例子中,MobiGOVServer
)必须仅包含小写字母、数字和分隔符。
标签(在您的例子中,latest
)是图像名称中唯一允许使用大写字母的部分。
有关详细信息,请参阅 docker tag reference。
请使用小写图像名称重试构建。