일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- classmethod
- python
- depends
- docker
- Spring
- 갓재석
- depends_on
- DB
- 재귀함수가 뭔가요
- 2차 코딩테스트
- MySQL server on 'db' (115)
- springboot 3.0.0
- S3
- AWS S3
- TypeError: 'property' object is not iterable
- METACLASS
- OperationalError
- docker-compose
- github
- 우아한 테크코스 2차 합격
- Django
- classproperty
- github skyline
- 우아한테크코스 2차
- AWS
- 코딩테스트
- 프로그래머스
- EC2
- python all testcode
- javascript
Archives
목록MySQL server on 'db' (115) (1)
hanbin.dev
django.db.utils.OperationalError: (2002, "Can't connect to MySQL server on 'db' (115)")
docker-compose로 개발환경을 구축하기 위해 아래와 같이 docker-compose.dev.yml 파일을 작성했었다. version: "2" services: db: image: mysql:5.7.34 container_name: dorandoran_db ports: - "7001:3306" environment: - MYSQL_DATABASE=dorandoran_dev_db - MYSQL_USER=devuser - MYSQL_PASSWORD=password - MYSQL_ROOT_PASSWORD=password command: - --character-set-server=utf8mb4 - --collation-server=utf8mb4_unicode_ci healthcheck: test: ["..
겪었던 오류
2021. 5. 31. 19:11