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에서도 위 명령어 사용 가능
반응형
'Docker' 카테고리의 다른 글
[Docker] Ubuntu 컨테이너에 PHP8 + Nginx + Laravel8 최신환경 세팅하기 (2) | 2021.09.23 |
---|---|
[Docker] Container 접속과 종료 시 주의할 점 (1) | 2021.09.17 |
[Docker] 도커 컨테이너 SSH 접속 및 사용 방법 (0) | 2020.11.18 |
[Docker] 도커에 Laravel 개발환경 세팅 (2) | 2020.08.29 |
Windows 에 Docker + Git 설치 (0) | 2020.08.29 |