当前位置:   article > 正文

windows上的docker登录docker私有仓库_docker accepts at most 1 arg(s), received 2

docker accepts at most 1 arg(s), received 2

目录

设置私有仓库

命令登录


设置私有仓库

双击打开docker的desktop程序,进入到设置

选择 docker 引擎(Docker Engine)


添加 设置 私有仓库地址 registry-mirrors  和  insecure-registries

我的私有仓库地址为  192.168.100.48(我的端口默认为80,有些私有仓库在搭建时设置的是5000,注意端口

  1. {
  2. "registry-mirrors": ["http://192.168.100.48"],
  3. "insecure-registries": ["192.168.100.48"],
  4. "debug": false,
  5. "experimental": false
  6. }

记得要重启docker(点下那个 “Allpy&Restart”按钮)

命令登录

  1. docker login 192.168.100.48 -u admin -p 123456
  2. WARNING! Using --password via the CLI is insecure. Use --password-stdin.

结果报错:使用标准密码输入方式才能登录

我以为是这种?????

  1. docker login 192.168.100.48 -u admin --password-stdin 123456
  2. accepts at most 1 arg(s), received 2

还是不对,

我只能 docker  login  --help 了

  1. docker login --help
  2. Log in to a Docker registry or cloud backend.
  3. If no registry server is specified, the default is defined by the daemon.
  4. Usage:
  5. docker login [OPTIONS] [SERVER] [flags]
  6. docker login [command]
  7. Available Commands:
  8. azure Log in to azure
  9. Flags:
  10. -h, --help Help for login
  11. -p, --password string password
  12. --password-stdin Take the password from stdin
  13. -u, --username string username
  14. Global Flags:
  15. --config DIRECTORY Location of the client config files DIRECTORY (default "C:\\Users\\Administrator\\.docker")
  16. -c, --context string context
  17. -D, --debug Enable debug output in the logs
  18. -H, --host string Daemon socket(s) to connect to
  19. Use "docker login [command] --help" for more information about a command.

要以非交互方式运行docker login命令,可以将 --password-stdin标志设置为通过STDIN提供密码。使用STDIN可以防止密码出现在shell的历史记录或日志文件中。

“非交互方式运行docker login命令 ” 什么鬼东西?? 文件方式?(想想shell的.sh 文件,在文件中写执行命令,然后运行.sh 文件)《交互式方式运行脚本》

然我就大胆地尝试了一把

  1. echo "123456"|docker login 192.168.100.48 -u admin --password-stdin
  2. Login Succeeded

当然 你也可以把密码 单独用文件保存(pwd.txt中只写密码信息 123456) 

docker login 192.168.100.48 -u admin --password-stdin < ~/pwd.txt 

成功!

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/974700
推荐阅读
相关标签
  

闽ICP备14008679号