Search code examples
ibm-mobilefirstcontainersibm-cloud

Issue while creating IBM MobileFirst image on IBM Container


We are trying to create IBM MobileFirst Container for bluemix by following the MobileFirst containers tutorial in : https://mobilefirstplatform.ibmcloud.com/labs/administrators/7.1/bluemix/

As per the tutorial/video we have created the MobileFirst Analytic server and trying to create MobileFirst server image using prepareserver.sh script in which it gives me an error saying that repository/tag is not valid.

enter image description here

I tried creating the image using Dockerfile still i am getting the same issue.


Solution

  • The issue is the capital letters in your image name. The repository part of your image name (in your case, MobiGOVServer) must contain only lowercase letters, digits, and separators.

    The tag (in your case, latest) is the only part of the image name where capital letters are allowed.

    For more information, see the docker tag reference.

    Please retry your build with a lowercase image name.