Skip to content

Commit

Permalink
[BE] docker compose 데이터 소스 분리 (#661)
Browse files Browse the repository at this point in the history
* refactor: todo patch시 pair_room_id 사라지는 문제 해결

* fix: jwt NPE 핸들링

* fix: Sgin in NPE 핸들링

* fix: alllow header에 content tpye 추가

* fix: Timer update 테스트 오류 수정

* chore: 로그 심기

* fix: preflight 옵션 filter 제외

* chore: 로그 뽑기

* fix: 로그인 체크 필터링  제거

* feat: 데이터 소스 분리

* chore: 데이터 소스 CD/TEST 분리

* chore: 데이터 소스 분리로 인한 컴포즈 변경

---------

Co-authored-by: reddevilmidzy <[email protected]>
Co-authored-by: Redddy <[email protected]>
Co-authored-by: Sunguk Yang (Kelly) <[email protected]>
  • Loading branch information
4 people authored Sep 26, 2024
1 parent 93d0200 commit 6ceaef4
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions backend/be_app-docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,12 @@ services:
- ${SERVER_LOGS_PATH}/springboot-app:/logs
- ${SERVER_LOGS_PATH}/springboot-app/backup:/logs/backup
environment:
SPRING_DATASOURCE_URL: ${DB_URL}
SPRING_DATASOURCE_USERNAME: ${DB_USERNAME}
SPRING_DATASOURCE_PASSWORD: ${DB_PASSWORD}
SPRING_DATASOURCE_REPLICA_MASTER_JDBC-URL: ${DB_URL}
SPRING_DATASOURCE_REPLICA_MASTER_USERNAME: ${DB_USERNAME}
SPRING_DATASOURCE_REPLICA_MASTER_PASSWORD: ${DB_PASSWORD}
SPRING_DATASOURCE_REPLICA_SLAVE_JDBC-URL: ${DB_URL}
SPRING_DATASOURCE_REPLICA_SLAVE_USERNAME: ${DB_USERNAME}
SPRING_DATASOURCE_REPLICA_SLAVE_PASSWORD: ${DB_PASSWORD}˚
SPRING_JPA_HIBERNATE_DDL-AUTO: ${DDL_AUTO}
OAUTH_GITHUB_CLIENT_ID: ${CLIENT_ID}
OAUTH_GITHUB_CLIENT_SECRET: ${CLIENT_SECRET}
Expand Down

0 comments on commit 6ceaef4

Please sign in to comment.