安装 docker-registry-frontend

 安装 docker-registry-frontend

安装 docker-registry-frontend

 

 拉取镜像  最新的V2

docker pull konradkleine/docker-registry-frontend:v2

 

  创建 docker-compose.yml

     

frontend:
    image: konradkleine/docker-registry-frontend:v2
    ports:
      - 8080:80
    volumes:
      - /certs/frontend.crt:/etc/apache2/server.crt:ro
      - /certs/frontend.key:/etc/apache2/server.key:ro
    environment:
      - ENV_DOCKER_REGISTRY_HOST=192.168.59.131
      - ENV_DOCKER_REGISTRY_PORT=5000

  我直接加到了 docker-registry 的yaml 文件中 (多个服务)

   docker-compose up -d 

  成功

   安装 docker-registry-frontend

 

   

 

上一篇:实现Harbor https认证


下一篇:kubernetes v1.14.0版本集群搭建(centos7)