Docker

[Docker] Container 접속 시 TTY 에러

먹세 2021. 9. 17. 16:42
docker exec -it mycontainer bash

위 처럼 컨테이너 접속 시

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

위 처럼 에러가 난다면

git 설치할때 터미널 설정을

Use MinTTY 로 선택 했기 때문이다.

 

winpty docker exec -it mycontainer bash

위 처럼 winpty 를 붙이면 된다.

 

또는 

 

git설치 시 

Use Windows defailt console window 

로 선택 한다면 git bash에서도 위 명령어 사용 가능

 

 

 

반응형