일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 | 31 |
Tags
- DB
- TypeError: 'property' object is not iterable
- github skyline
- 재귀함수가 뭔가요
- springboot 3.0.0
- github
- depends
- docker-compose
- depends_on
- AWS
- 우아한테크코스 2차
- Django
- 프로그래머스
- 갓재석
- classproperty
- 코딩테스트
- docker
- OperationalError
- python
- javascript
- classmethod
- MySQL server on 'db' (115)
- 우아한 테크코스 2차 합격
- METACLASS
- AWS S3
- Spring
- python all testcode
- EC2
- 2차 코딩테스트
- S3
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