less than 1 minute read

image

image

Running중인 docker container를 VScode에 atttach할 때 다음과 같은 에러가 발생할 수 있습니다.

image

docker 그룹에 현재 사용자 추가를 해줍니다.

sudo usermod -aG docker $USER
# 터미널 재시작 필요

image

정상적으로 VScode에 실행중인 docker container를 attach 하였습니다.

image

이제 이 container에서 새로운 독립적인 컴퓨터에서 작업하듯 코딩할 수 있습니다.

Extension으로 python debugger도 설치해줍니다.

image

이 세팅을 통해 앞으로는 VScode에 attach한 docker container 내에서 환경변수 충돌없이, 디버깅도 하며 개발을 할 수 있습니다.

감사합니다.

Leave a comment