我在localhost中有我的docker-registry,我可以使用命令来拉/推:docker push localhost:5000/someimage
我如何使用docker push username@password:localhost:5000/someimage
等命令推送它?
答案 0 :(得分:19)
此解决方案对我有用: 首先,我创建了一个文件夹注册表,我想在其中工作:
$ mkdir registry
$ cd registry/
现在我创建了我将保存凭据的文件夹
$ mkdir auth
现在我将在docker容器的帮助下创建一个htpasswd文件。 这个htpasswd文件将包含我的凭据和我加密的密码。
$ docker run --entrypoint htpasswd registry:2 -Bbn myuser mypassword > auth/htpasswd
验证
$ cat auth/htpasswd
myuser:$2y$05$8IpPEG94/u.gX4Hn9zDU3.6vru2rHJSehPEZfD1yyxHu.ABc2QhSa
证书很好。现在我必须将我的凭据添加到我的注册表中。在这里,我将我的auth目录挂载到我的容器中:
docker run -d -p 5000:5000 --restart=always --name registry_private -v `pwd`/auth:/auth -e "REGISTRY_AUTH=htpasswd" -e "REGISTRY_AUTH_HTPASSWD_REALM=Registry Realm" -e "REGISTRY_AUTH_HTPASSWD_PATH=/auth/htpasswd" registry:2
TEST:
$ docker push localhost:5000/busybox
The push refers to a repository [localhost:5000/busybox]
8ac8bfaff55a: Image push failed
unauthorized: authentication required
身份验证
$ docker login localhost:5000
Username (): myuser
Password:
Login Succeeded
重试推送
$ docker push localhost:5000/busybox
The push refers to a repository [localhost:5000/busybox]
8ac8bfaff55a: Pushed
latest: digest: sha256:1359608115b94599e5641638bac5aef1ddfaa79bb96057ebf41ebc8d33acf8a7 size: 527
凭据保存在〜/ .docker / config.json中:
cat ~/.docker/config.json
{
"auths": {
"localhost:5000": {
"auth": "bXl1c2VyOm15cGFzc3dvcmQ="
}
}
不要忘记在使用凭据时建议使用https。
这是一篇关于如何使用TLS的博客(使用此方法的自签名证书):https://medium.com/@lvthillo/deploy-a-docker-registry-using-tls-and-htpasswd-56dd57a1215a
答案 1 :(得分:2)
尝试在您的泊坞窗配置文件~/.docker/config.json
{
"auths": {
"https://localhost:5000/someimage": {
"auth": "username",
"email": "password"
}
}
}