当使用docker login -u xxx -p xx时,报WARNING! Using --password via the CLI is insecure. Use --password-stdin.提示
解决:
1. 将密码写入到一个文件中,例如/etc/docker_passwd文件
2.使用以下命令执行登录:
cat /etc/docker_passwd | docker login --username 用户名 --password-stdin
当使用docker login -u xxx -p xx时,报WARNING! Using --password via the CLI is insecure. Use --password-stdin.提示
解决:
1. 将密码写入到一个文件中,例如/etc/docker_passwd文件
2.使用以下命令执行登录:
cat /etc/docker_passwd | docker login --username 用户名 --password-stdin