在win10上安装docker之后使用git bash 或者xshell 操作时的问题 以及解决办法
在win10上安装docker之后使用git bash 或者xshell 操作时的问题
问题描述:
1.当使用 docker run -it centos 时会报错:
the input device is not a TTY. If you are using mintty, try prefixing the command with 'winpty'
这是因为docker run命令默认的终端是unix 系统的tty终端,而git bash默认采用的终端是mintty。
这时只需要在命令前加上 wintpy即可:
winpty docker run -it centos
2. 如果使用git bash来访问的话 可能还有还会报错:
$ winpty docker run -it centos /bin/bash docker: Error response from daemon: OCI runtime create failed: container_linux.go:349: starting container process caused "exec: \"C:/Pr ogram Files/Git/usr/bin/bash.exe\": stat C:/Program Files/Git/usr/bin/bash.exe: no such file or directory": unknown.
这是因为gitbash 的路径冲突造成的,所以有两种方式启动:
winpty docker run -it centos //bin/bash
或者
winpty docker run -it centos bash