Skip to content

Commit

Permalink
Docker compose fix (#678)
Browse files Browse the repository at this point in the history
  • Loading branch information
kathirsvn authored Nov 23, 2023
1 parent f671176 commit 117b817
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions docker-compose/docker-compose-dev-mode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,11 @@ services:
- QUARKUS_GRPC_CLIENTS_BRIDGE_PORT=8091
- QUARKUS_HTTP_ACCESS_LOG_ENABLED=${REQUESTLOG}
- QUARKUS_LOG_LEVEL=${LOGLEVEL}
- JAVA_OPTS_APPEND="-Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager"
- JAVA_OPTS_APPEND=-Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager
healthcheck:
test: curl -f http://localhost:8181/stargate/health || exit 1
interval: 5s
timeout: 10s
retries: 10

networks:
stargate:
3 changes: 1 addition & 2 deletions docker-compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,11 @@ services:
- QUARKUS_GRPC_CLIENTS_BRIDGE_PORT=8091
- QUARKUS_HTTP_ACCESS_LOG_ENABLED=${REQUESTLOG}
- QUARKUS_LOG_LEVEL=${LOGLEVEL}
- JAVA_OPTS_APPEND="-Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager"
- JAVA_OPTS_APPEND=-Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager
healthcheck:
test: curl -f http://localhost:8181/stargate/health || exit 1
interval: 5s
timeout: 10s
retries: 10

networks:
stargate:
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@
<properties>
<skipITs>false</skipITs>
<quarkus.package.type>native</quarkus.package.type>
<!-- Please update github workflows that build docker images if changing image name -->
<!-- Please update GitHub workflows that build docker images if changing image name -->
<quarkus.container-image.name>jsonapi-native</quarkus.container-image.name>
<quarkus.native.native-image-xmx>6G</quarkus.native.native-image-xmx>
</properties>
Expand Down

0 comments on commit 117b817

Please sign in to comment.