-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Feature/#313] CI/CD docker hub 도입
- Loading branch information
Showing
4 changed files
with
70 additions
and
4 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 |
---|---|---|
|
@@ -6,7 +6,7 @@ on: | |
- release-* | ||
|
||
jobs: | ||
build: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
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,12 @@ | ||
FROM openjdk:11-jre-slim as spring | ||
|
||
ARG JAR_FILE=./resource-server/build/libs/resource-server-0.0.1-SNAPSHOT.jar | ||
|
||
EXPOSE 8080 | ||
EXPOSE 8081 | ||
EXPOSE 8082 | ||
EXPOSE 8083 | ||
|
||
COPY ${JAR_FILE} app.jar | ||
|
||
CMD ["java","-jar", "app.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,37 @@ | ||
version: '3' | ||
services: | ||
prod1: | ||
image: whtmdgus56/ibas-config:prod | ||
container_name: backend/prod1 | ||
ports: | ||
- "8080:8080" | ||
environment: | ||
- SPRING_PROFILES_ACTIVE=prod1 | ||
entrypoint: ["java", "-jar", "app.jar", "--spring.profiles.active=prod1"] | ||
|
||
prod2: | ||
image: whtmdgus56/ibas-config:prod | ||
container_name: backend/prod2 | ||
ports: | ||
- "8081:8081" | ||
environment: | ||
- SPRING_PROFILES_ACTIVE=prod2 | ||
entrypoint: ["java", "-jar", "app.jar", "--spring.profiles.active=prod2"] | ||
|
||
dev1: | ||
image: whtmdgus56/ibas-config:dev | ||
container_name: backend/dev1 | ||
ports: | ||
- "8082:8082" | ||
environment: | ||
- SPRING_PROFILES_ACTIVE=dev1 | ||
entrypoint: ["java", "-jar", "app.jar", "--spring.profiles.active=dev1"] | ||
|
||
dev2: | ||
image: whtmdgus56/ibas-config:dev | ||
container_name: backend/dev2 | ||
ports: | ||
- "8083:8083" | ||
environment: | ||
- SPRING_PROFILES_ACTIVE=dev2 | ||
entrypoint: ["java", "-jar", "app.jar", "--spring.profiles.active=dev2"] |