Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: dockerfile, yml #25

Merged
merged 1 commit into from
Jun 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ ARG JAR_FILE=build/libs/*.jar
COPY ${JAR_FILE} app.jar

# 운영 및 개발에서 사용되는 환경 설정을 분리
ENTRYPOINT ["java", "-jar", "-Dspring.profiles.active=prod", "/app.jar"]
ENTRYPOINT ["java", "-jar", "-Dspring.profiles.group=prod", "/app.jar"]
10 changes: 5 additions & 5 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
spring:
profiles:
group:
"local": "localRedis"
"prod": "prodRedis"
"local": "localDB"
"prod": "prodDB"
r2dbc:
url: r2dbc:pool:mysql://localhost:3306/webflux
username: root
Expand All @@ -17,7 +17,7 @@ spring:
spring:
config:
activate:
on-profile: "localRed"
on-profile: "localDB"
data:
redis:
host: local
Expand All @@ -31,11 +31,11 @@ spring:
spring:
config:
activate:
on-profile: "prodRedis"
on-profile: "prodDB"

data:
redis:
host: redis
port: 6379
password:
password: 12345678
timeout: 5000
Loading