其他分享
首页 > 其他分享> > docker 私人仓库 设置密码报错(已解决)

docker 私人仓库 设置密码报错(已解决)

作者:互联网

rhel7.9 搭建docker registry 的时候,需要密码登录,x509 证书认证,在htpasswd 生成密码的时候报错:

$ docker run --entrypoint htpasswd registry:latest -Bbn test 123456  >> /opt/docker/registry/auth/htpasswd
docker: Error response from daemon: OCI runtime create failed: container_linux.go:380: starting container process caused: exec: "htpasswd": executable file not found in $PATH: unknown.
ERRO[0000] error waiting for container: context canceled 

多次试验之后,终于解决了,解决方法如下:

$ yum -y install httpd

$  htpasswd -Bbn test 123456  > auth/htpasswd

标签:Bbn,container,密码,htpasswd,报错,registry,docker
来源: https://blog.csdn.net/m0_61209018/article/details/121698444