Skip to content

Commit

Permalink
xmx added
Browse files Browse the repository at this point in the history
  • Loading branch information
sqshq committed Apr 30, 2016
1 parent 983d97a commit f234ae4
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion account-service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ FROM java:8-jre
MAINTAINER Alexander Lukyanchikov <[email protected]>

ADD ./target/account-service.jar /app/
CMD ["java", "-jar", "/app/account-service.jar"]
CMD ["java", "-Xmx200m", "-jar", "/app/account-service.jar"]

EXPOSE 6000
2 changes: 1 addition & 1 deletion auth-service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ FROM java:8-jre
MAINTAINER Alexander Lukyanchikov <[email protected]>

ADD ./target/auth-service.jar /app/
CMD ["java", "-jar", "/app/auth-service.jar"]
CMD ["java", "-Xmx200m", "-jar", "/app/auth-service.jar"]

EXPOSE 5000
2 changes: 1 addition & 1 deletion config/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ FROM java:8-jre
MAINTAINER Alexander Lukyanchikov <[email protected]>

ADD ./target/config.jar /app/
CMD ["java", "-jar", "/app/config.jar"]
CMD ["java", "-Xmx200m", "-jar", "/app/config.jar"]

EXPOSE 8888
2 changes: 1 addition & 1 deletion gateway/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ FROM java:8-jre
MAINTAINER Alexander Lukyanchikov <[email protected]>

ADD ./target/gateway.jar /app/
CMD ["java", "-jar", "/app/gateway.jar"]
CMD ["java", "-Xmx200m", "-jar", "/app/gateway.jar"]

EXPOSE 4000
2 changes: 1 addition & 1 deletion monitoring/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ FROM java:8-jre
MAINTAINER Alexander Lukyanchikov <[email protected]>

ADD ./target/monitoring.jar /app/
CMD ["java", "-jar", "/app/monitoring.jar"]
CMD ["java", "-Xmx200m", "-jar", "/app/monitoring.jar"]

EXPOSE 8989 8080
2 changes: 1 addition & 1 deletion notification-service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ FROM java:8-jre
MAINTAINER Alexander Lukyanchikov <[email protected]>

ADD ./target/notification-service.jar /app/
CMD ["java", "-jar", "/app/notification-service.jar"]
CMD ["java", "-Xmx200m", "-jar", "/app/notification-service.jar"]

EXPOSE 8000
2 changes: 1 addition & 1 deletion registry/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ FROM java:8-jre
MAINTAINER Alexander Lukyanchikov <[email protected]>

ADD ./target/registry.jar /app/
CMD ["java", "-jar", "/app/registry.jar"]
CMD ["java", "-Xmx200m", "-jar", "/app/registry.jar"]

EXPOSE 8761
2 changes: 1 addition & 1 deletion statistics-service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ FROM java:8-jre
MAINTAINER Alexander Lukyanchikov <[email protected]>

ADD ./target/statistics-service.jar /app/
CMD ["java", "-jar", "/app/statistics-service.jar"]
CMD ["java", "-Xmx200m", "-jar", "/app/statistics-service.jar"]

EXPOSE 7000

0 comments on commit f234ae4

Please sign in to comment.