fix: Correct backend healthcheck command - remove 'run' from bun -e
This commit is contained in:
@@ -33,7 +33,7 @@ services:
|
|||||||
postgres:
|
postgres:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "bun", "run", "-e", "require('http').createServer(() => {}).listen(3001)"]
|
test: ["CMD", "bun", "-e", "require('http').createServer(() => {}).listen(3001)"]
|
||||||
interval: 30s
|
interval: 30s
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
retries: 3
|
retries: 3
|
||||||
|
|||||||
Reference in New Issue
Block a user