Skip to content

Commit c5364fd

Browse files
committed
Fix Hub health check port in Docker deployment
Fixes cryptomator/hub#366
1 parent ddbf99d commit c5364fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

assets/js/hubsetup.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ ${e}`;
112112
result += '# * KC_DB\n# * KC_HEALTH_ENABLED\n# * KC_HTTP_RELATIVE_PATH\n\n';
113113
}
114114

115-
result += '# Generated using script version 8\n\n';
115+
result += '# Generated using script version 9\n\n';
116116

117117
return result;
118118
}
@@ -475,7 +475,7 @@ EOF`;
475475
},
476476
...(!this.cfg.compose.includeTraefik && {ports: [`${this.getPort(this.cfg.hub.publicUrl)}:8080`]}),
477477
healthcheck: {
478-
test: ['CMD-SHELL', '(curl -f http://localhost:9000/q/health/live && curl -f http://localhost:8080/api/config) || exit 1'],
478+
test: ['CMD-SHELL', '(curl -f http://localhost:8080/q/health/live && curl -f http://localhost:8080/api/config) || exit 1'],
479479
interval: '10s',
480480
timeout: '3s',
481481
},

0 commit comments

Comments
 (0)