-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #564 from sopt-makers/develop
* feat: coffee chat 최신순 정렬 추가 (#558) related issue #557 * [Feat] update dev server deploy script (#562) * feat: update dev server deploy script related issue #561 * fix: aws access key 수정 related issue #561 * fix: ecr login command related issue #561 * fix: remove 'amd64' tag related issue #561 * fix: remove 'amd64' tag related issue #561 * fix: ECR_REPO env를 사용하도록 수정 related issue #561 * fix: env 할당 방식 변경 related issue #561 * fix: env 할당 방식 변경 related issue #561 * fix: change platform related issue #561 * fix: ECR_REPO env 추가 related issue #561 * chore: ecr repo rollback * fix: ECR_HOST, ECR_REPO env 변경 * fix: ECR_HOST, ECR_REPO env 변경 * fix: cli만 사용하도록 변경 * fix: directory 명시 * fix: scp debugging - directory 수정 * fix: env 수정 * fix: docker -> docker-compose로 수정 * fix: docker -> docker-compose로 수정 - scp debug mode off related issue #561 * feat: port switching 추가 related issue #561 * fix: add health check sleep related issue #561 * refactor: script 공통 로직 function으로 최소화 related issue #561 * refactor: script 파일 분리 related issue #561 * fix: health check error related issue #561 * chore: test용 trigger 제거 related issue #561 * feat: apply to production workflow related issue #561 * chore: remove appspec.yml, code deploy script related issue #561 * chore: workflow name rollback related issue #561 * chore: region 'ap-northeast-2'로 변경 related issue #561 * chore: add end line related issue #561 * test: trigger 추가 related issue #561 * fix: ap-northeast-2 -> us-east-1 로 변경 related issue #561 * chore: remove trigger for test related issue #561
- Loading branch information
Showing
15 changed files
with
298 additions
and
104 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
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,7 @@ | ||
FROM amazoncorretto:17 | ||
WORKDIR /app | ||
COPY ./build/libs/internal-0.0.1-SNAPSHOT.jar /app/APPLICATION.jar | ||
|
||
ENV SPRING_PROFILES_ACTIVE=dev | ||
|
||
CMD ["java", "-Duser.timezone=Asia/Seoul", "-jar", "-Dspring.profiles.active=${SPRING_PROFILES_ACTIVE}", "APPLICATION.jar"] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,21 @@ | ||
version: '3.8' | ||
services: | ||
playground-blue: | ||
image: ${ECR_REPO} | ||
expose: | ||
- 8080 | ||
ports: | ||
- "8080:8080" | ||
environment: | ||
- TZ=Asia/Seoul | ||
- SPRING_PROFILES_ACTIVE=${SPRING_PROFILES_ACTIVE} | ||
|
||
playground-green: | ||
image: ${ECR_REPO} | ||
expose: | ||
- 8080 | ||
ports: | ||
- "8081:8080" | ||
environment: | ||
- TZ=Asia/Seoul | ||
- SPRING_PROFILES_ACTIVE=${SPRING_PROFILES_ACTIVE} |
Oops, something went wrong.