Skip to content

Commit

Permalink
Fixed issue with docker compose when no DYNAMO_HOME variable is defined.
Browse files Browse the repository at this point in the history
  • Loading branch information
ekharkunov committed Oct 15, 2024
1 parent 0e51936 commit 34953dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ dependencies {
}

implementation('com.google.cloud:spring-cloud-gcp-starter-storage')
implementation("com.google.cloud:spring-cloud-gcp-starter-logging")
implementation('com.google.cloud:spring-cloud-gcp-starter-logging')
implementation('com.google.cloud:google-cloud-compute:1.59.0')
implementation('com.google.guava:guava:33.2.1-jre')
implementation('com.samskivert:jmustache:1.16')
Expand Down
2 changes: 1 addition & 1 deletion server/docker/common-services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ services:
entrypoint: ["java","-Xmx4g","-XX:MaxDirectMemorySize=2g","-Dorg.eclipse.jetty.server.Request.maxFormKeys=1500","-jar","/app/extender.jar"]
user: extender
environment:
- ${DYNAMO_HOME:+DYNAMO_HOME=/dynamo_home}
- DYNAMO_HOME${DYNAMO_HOME:+=/dynamo_home}
- DM_DEBUG_COMMANDS
- DM_DEBUG_DISABLE_PROGUARD
- DM_DEBUG_JOB_FOLDER
Expand Down

0 comments on commit 34953dc

Please sign in to comment.