구축된 환경을 토대로 VSCode 연동하기
Docker Compose를 기반으로 구축된 환경에서 명령어를 사용하기 위하여 shell에 진입하려면
docker compose exec web bash
위와 관련된 명령어를 실행하면 된다.
But, Django Project를 생성했으면 App을 개발해야 하는데 아무래도 툴은 필수겠지?
나의 애정 툴은 VSCode 이기에, Let's Go.
# docker-compose.yml
version: '3'
services:
db:
image: mysql:8.0.31
container_name: mysql
ports:
- 3306:3306
env_file:
- .env
environment:
TZ: Asia/Seoul
web:
image: django:4.0
container_name: django
build: .
command: python manage.py runserver 0.0.0.0:8000
volumes: # <<< Here
- .:/code
ports:
- 8000:8000
depends_on:
- db
참 쉽죠?