the input device is not a TTY. If you are using mintty, try prefixing the comma

时间:2022-07-27
本文章向大家介绍the input device is not a TTY. If you are using mintty, try prefixing the comma,主要内容包括其使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

windows上执行Docker命令,如:

docker exec -it mysql mysql -uroot -p

就会报错:

 the input device is not a TTY. If you are using mintty, try prefixing the command with 'winpty'

需要在执行Docker命令之前,加 winpty,如:

winpty docker exec -it mysql mysql -uroot -p