Push the Image to Your Company's Docker Registry

Once you have built a new custom engine, you can push the image to your company's Docker registry.

  1. When using this method, make sure to tag your image with the following schema:
    docker tag <image-name> <company-registry>/<user-name>/<image-name>:<tag>
  2. Once the image has been tagged properly, use the following command to push the image:
    docker push <company-registry>/<user-name>/<image-name>:<tag>
    The MeCab example at the end of this topic uses this method.