[Snow-ball]프로그래밍(컴퓨터)/여러가지
docker로 mariadb pull 받고 접속할 때 에러 - the input device is not a TTY. If you are using mintty, try prefixing the command with 'winpty'
Snow-ball
2023. 10. 1. 22:58
반응형
1
|
docker exec -it mariadb /bin/bash
|
cs |
위의 명령어를 맥 터미널로 도커를 사용할 때는 잘되던것이 윈도우에서 깃배시로 사용하는 명령어가 되지 않았다.
위에 명령어처럼 사용시 아래의 에러가 발생한다.
1
|
the input device is not a TTY. If you are using mintty, try prefixing the command with 'winpty'
|
cs |
결국 위 에러는 git 설치시 터미널 설정을 mintty 로 한경우 발생한다.
그렇기 때문에 Window의 git bash 사용할때는 아래 처럼 사용하면 된다.
1
|
winpty docker exec -it mariadb bash
|
cs |
반응형