Generally, enterprises have their own internal image registry. You need to retag the images and push them to your registry. When there is no image registry available, we will deploy registry as an internal repository. The following are some basic image registry operations:
Pull image:
shelldocker login xxx.example.com docker pull xxx.example.com/mop/xxx:versionPush image
shelldocker push xxx.example.com/mop/xxx:versionCreate docker login authentication secret in kubernetes
shellkubectl create secret docker-registry my-secret --docker-server=DOCKER_REGISTRY_SERVER --docker-username=DOCKER_USER --docker-password=DOCKER_PASSWORD --docker-email=DOCKER_EMAIL
