forked from ewolff/microservice
-
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.
- Loading branch information
Eberhard Wolff
committed
Sep 17, 2020
1 parent
49d9b60
commit 99d9d07
Showing
6 changed files
with
6 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM openjdk:10.0.2-jre-slim | ||
FROM openjdk:11.0.2-jre-slim | ||
COPY target/microservice-demo-catalog-0.0.1-SNAPSHOT.jar . | ||
CMD /usr/bin/java -Xmx400m -Xms400m -jar microservice-demo-catalog-0.0.1-SNAPSHOT.jar | ||
EXPOSE 8080 |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM openjdk:10.0.2-jre-slim | ||
FROM openjdk:11.0.2-jre-slim | ||
COPY target/microservice-demo-customer-0.0.1-SNAPSHOT.jar . | ||
CMD /usr/bin/java -Xmx400m -Xms400m -jar microservice-demo-customer-0.0.1-SNAPSHOT.jar | ||
EXPOSE 8080 |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM openjdk:10.0.2-jre-slim | ||
FROM openjdk:11.0.2-jre-slim | ||
COPY target/microservice-demo-eureka-server-0.0.1-SNAPSHOT.jar . | ||
CMD /usr/bin/java -Xmx400m -Xms400m -jar microservice-demo-eureka-server-0.0.1-SNAPSHOT.jar | ||
EXPOSE 8761 |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM openjdk:10.0.2-jre-slim | ||
FROM openjdk:11.0.2-jre-slim | ||
COPY target/microservice-demo-order-0.0.1-SNAPSHOT.jar . | ||
CMD /usr/bin/java -Xmx400m -Xms400m -jar microservice-demo-order-0.0.1-SNAPSHOT.jar | ||
EXPOSE 8080 |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM openjdk:10.0.2-jre-slim | ||
FROM openjdk:11.0.2-jre-slim | ||
COPY target/microservice-demo-turbine-server-0.0.1-SNAPSHOT.jar . | ||
CMD /usr/bin/java -Xmx400m -Xms400m -jar microservice-demo-turbine-server-0.0.1-SNAPSHOT.jar | ||
EXPOSE 8989 |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM openjdk:10.0.2-jre-slim | ||
FROM openjdk:11.0.2-jre-slim | ||
COPY target/microservice-demo-zuul-server-0.0.1-SNAPSHOT.jar . | ||
CMD /usr/bin/java -Xmx600m -Xms600m -jar microservice-demo-zuul-server-0.0.1-SNAPSHOT.jar | ||
EXPOSE 8080 |