-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FEAT] nginx & docker-compose 무중단 배포 (#184)
* 무중단배포 테스트 * 무중단 배포 테스트 * feat: main.yml 수정 * feat: docker build and push script 작성 * feat: docker build and push script 작성 * feat: docker build and push script 작성 * feat: docker build and push script 작성 * feat: docker build and push script 작성 * feat: docker build and push script 작성 * feat: docker build and push script 작성 * feat: docker build and push script 작성 * feat: docker build and push script 작성 * feat: docker build and push script 작성 * feat: docker build and push script 작성 * git actions & docker TEST * git actions & docker TEST * git actions & docker TEST * self-hosted runners & docker compose test * self-hosted runners & docker compose test * self-hosted runners & docker compose test * self-hosted runners & docker compose test * docker compose & nginx test * 최종 테스트 * 최종 테스트 * 최종 테스트 * 최종 테스트 * 최종 테스트 * 테스트 * feat: 무중단 배포 적용 완료 * feat: 무중단 배포 적용 완료 * feat: 무중단 배포 적용 완료
- Loading branch information
Showing
5 changed files
with
30 additions
and
62 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Start with a base image containing Java runtime. | ||
FROM openjdk:17-jdk | ||
|
||
# The application's jar file. | ||
ARG JAR_FILE=./build/libs/GitGetApplication.jar | ||
|
||
# Add the application's jar to the container. | ||
COPY ${JAR_FILE} App.jar | ||
|
||
# Run the jar file. | ||
CMD ["java", "-jar", "App.jar"] |
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
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