Skip to content

Commit d7afc03

Browse files
authored
fix(devservices): Fix healtcheck command for objectstore container (#188)
Follow-up to #185. The healtcheck command requires a shell to run, which is not available in distroless containers. This changes to `CMD` mode, which runs the binary directly
1 parent d148e12 commit d7afc03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

devservices/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ services:
2929
FSS_LOGGING__LEVEL: "debug"
3030
command: run
3131
healthcheck:
32-
test: /bin/entrypoint healthcheck
32+
test: ["CMD", "/bin/entrypoint", "healthcheck"]
3333
interval: 5s
3434
timeout: 1s
3535
retries: 5

0 commit comments

Comments
 (0)