1. 拉取倉庫
docker pull registry
2. 安裝密碼生成工具
sudo apt-get install apache2-utils
3. 生成使用者名稱和密碼
htpasswd -Bc /etc/docker/registry/passwords dzq
4. 啟動倉庫
docker run -d -p 5000:5000 --restart=always --name registry \ -e REGISTRY_AUTH=htpasswd \ -e REGISTRY_AUTH_HTPASSWD_REALM=Registry \ -e REGISTRY_AUTH_HTPASSWD_PATH=/etc/docker/registry/passwords \ -v /etc/docker/registry/passwords:/etc/docker/registry/passwords \ registry
前置條件配置/etc/docker/daemon.json
{ "max-concurrent-downloads": 10, "max-concurrent-uploads": 5, "default-shm-size": "1G", "debug": true, "experimental": false, "registry-mirrors": [ "https://x9r52uz5.mirror.aliyuncs.com", "https://dockerhub.icu", "https://docker.chenby.cn", "https://docker.1panel.live", "https://docker.awsl9527.cn", "https://docker.anyhub.us.kg", "https://dhub.kubesre.xyz" ], "insecure-registries": ["dockerhub:5000"] }
測試結果:
映象上傳
映象拉取
這個倉庫搭建我花了半天時間, docker login主要卡在401驗證錯誤, 說多了都是淚。。。。。
這個驗證錯誤還是配置不對導致的