We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f57a81 commit 297e268Copy full SHA for 297e268
Dockerfile
@@ -12,4 +12,4 @@ EXPOSE 4000
12
ENV JAVA_XMS=-Xms1024m
13
ENV JAVA_XMX=-Xmx1024m
14
15
-ENTRYPOINT java -Djava.security.egd=file:/dev/urandom $JAVA_XMS $JAVA_XMX -jar ReactiveRESTStarterApp-1.0.jar
+ENTRYPOINT java -Djava.security.egd=file:/dev/urandom $JAVA_XMS $JAVA_XMX -jar ReactiveRESTfulStarterApp-1.0.jar
docker-compose.yml
@@ -8,11 +8,15 @@ services:
8
image: "mongo"
9
ports:
10
- "27017:27017"
11
+ expose:
+ - 27017
volumes:
- ./init-mongo.js:/docker-entrypoint-initdb.d/init-mongo.js:ro
app:
16
build: .
17
18
- "4000:4000"
19
20
+ - 4000
21
depends_on:
22
- db
0 commit comments