Skip to content

Commit bca0fb4

Browse files
committed
Allow loader to work in demo mode
1 parent 0ac2ba7 commit bca0fb4

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

api/src/main/resources/application-dev.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ hmda {
3030
isDemo = true
3131
panel {
3232
tcp {
33-
host = "127.0.0.1"
33+
host = "0.0.0.0"
3434
host = ${?HMDA_PANEL_LOADER_HOST}
3535
port = "8888"
3636
port = ${?HMDA_PANEL_LOADER_PORT}

api/src/main/resources/application.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ hmda {
3131
isDemo = ${?HMDA_IS_DEMO}
3232
panel {
3333
tcp {
34-
host = "127.0.0.1"
34+
host = "0.0.0.0"
3535
host = ${?HMDA_PANEL_LOADER_HOST}
3636
port = "8888"
3737
port = ${?HMDA_PANEL_LOADER_PORT}

docker-compose.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ services:
77
- '8080:8080'
88
- '8081:8081'
99
- '8082:8082'
10+
- '8888:8888'
1011
volumes:
1112
- ./target/scala-2.12/hmda.jar:/opt/hmda.jar
1213
depends_on:

0 commit comments

Comments
 (0)