Skip to content
中文

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:

  1. Pull image:

    shell
    docker login xxx.example.com
    docker pull xxx.example.com/mop/xxx:version
  2. Push image

    shell
    docker push xxx.example.com/mop/xxx:version
  3. Create docker login authentication secret in kubernetes

    shell
    kubectl create secret docker-registry my-secret --docker-server=DOCKER_REGISTRY_SERVER --docker-username=DOCKER_USER
    --docker-password=DOCKER_PASSWORD --docker-email=DOCKER_EMAIL

Digital Ecosystem Infrastructure.