-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Stiven Ramírez Arango
committed
Feb 26, 2022
1 parent
cc64991
commit 000edb1
Showing
22 changed files
with
4,306 additions
and
28 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 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,5 @@ | ||
FROM openjdk:17.0.2-jdk-oracle | ||
VOLUME [ "/tmp" ] | ||
EXPOSE 8080 | ||
COPY api-gateway-0.0.1.jar /api-gateway-0.0.1.jar | ||
ENTRYPOINT [ "java", "-jar", "api-gateway-0.0.1.jar" ] |
Binary file not shown.
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 @@ | ||
docker build -t api-gateway . | ||
docker run -d --name api-gateway -p 8081:8080 --link eureka:eureka api-gateway | ||
docker logs -f api-gateway |
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,5 @@ | ||
FROM openjdk:17.0.2-jdk-oracle | ||
VOLUME [ "/tmp" ] | ||
EXPOSE 9091 | ||
COPY balance-microservice-0.0.1.jar /balance-microservice-0.0.1.jar | ||
ENTRYPOINT [ "java", "-jar", "balance-microservice-0.0.1.jar" ] |
Binary file not shown.
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 @@ | ||
docker build -t balance . | ||
docker run -d --name balance-microservice -p 9091:9091 --link eureka:eureka --link postgres:postgres balance | ||
docker logs -f balance-microservice |
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,5 @@ | ||
FROM openjdk:17.0.2-jdk-oracle | ||
VOLUME [ "/tmp" ] | ||
EXPOSE 9092 | ||
COPY customer-microservice-0.0.1.jar /customer-microservice-0.0.1.jar | ||
ENTRYPOINT [ "java", "-jar", "customer-microservice-0.0.1.jar" ] |
Binary file not shown.
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 @@ | ||
docker build -t customer . | ||
docker run -d --name customer-microservice -p 9092:9092 --link eureka:eureka --link postgres:postgres customer | ||
docker logs -f customer-microservice |
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,5 @@ | ||
FROM openjdk:17.0.2-jdk-oracle | ||
VOLUME [ "/tmp" ] | ||
EXPOSE 1111 | ||
COPY eureka-server-0.0.1.jar /eureka-server-0.0.1.jar | ||
ENTRYPOINT [ "java", "-jar", "eureka-server-0.0.1.jar" ] |
Binary file not shown.
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 @@ | ||
docker build -t eureka . | ||
docker run -d --name eureka -p 1111:1111 eureka | ||
docker logs -f eureka |
Oops, something went wrong.