-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* feat: 무중단 배포를 위한 구성 파일 작성 Co-authored-by: kpeel5839 <89840550+kpeel5839@users.noreply.github.com> * feat: datasource docker url로 수정 * feat: 도커 이미지 빌드를 위한 파일 작성 Co-authored-by: kpeel5839 <89840550+kpeel5839@users.noreply.github.com> * feat: 개발서버, 운영서버 콘솔 로그 추가 Co-authored-by: kpeel5839 <89840550+kpeel5839@users.noreply.github.com> * feat: 무중단 배포를 위한 워크플로우 수정 및 작성 Co-authored-by: kpeel5839 <89840550+kpeel5839@users.noreply.github.com> --------- Co-authored-by: kpeel5839 <89840550+kpeel5839@users.noreply.github.com>
- Loading branch information
Showing
6 changed files
with
63 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
FROM openjdk:17 | ||
COPY build/libs/mapbefine.jar mapbefine.jar | ||
ENTRYPOINT ["java", "-jar","-Dspring.profiles.active=dev", "mapbefine.jar"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
FROM openjdk:17 | ||
COPY build/libs/mapbefine.jar mapbefine.jar | ||
ENTRYPOINT ["java", "-jar","-Dspring.profiles.active=prod", "mapbefine.jar"] |
Submodule config
updated
from 947961 to d7b073
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters