Skip to content

Commit

Permalink
Fix issue with common-io exception.
Browse files Browse the repository at this point in the history
Fix running docker compose when no DYNAMO_HOME is set.
  • Loading branch information
ekharkunov committed Oct 1, 2024
1 parent 6b97bd3 commit d43c286
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ dependencies {
implementation('com.samskivert:jmustache:1.16')
implementation('commons-chain:commons-chain:1.2')
implementation('org.apache.commons:commons-fileupload2-jakarta:2.0.0-M1')
implementation('commons-io:commons-io:2.12.0')
implementation('org.apache.commons:commons-text:1.12.+')
implementation('org.apache.commons:commons-compress:1.27.+')
implementation('org.apache.commons:commons-lang3:3.14.0')
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 @@ -14,7 +14,7 @@ services:
- ./../app/:/app/:ro
- ./../app/:/etc/extender/apps/:ro
- ./../configs:/etc/defold/extender:ro
- ${DYNAMO_HOME:-dummy:/dynamo_home}
- ${DYNAMO_HOME:-./../app/dummy:/dynamo_home}
entrypoint: ["java","-Xmx4g","-XX:MaxDirectMemorySize=2g","-jar","/app/extender.jar"]
environment:
- DYNAMO_HOME
Expand Down

0 comments on commit d43c286

Please sign in to comment.