I'm curious if anyone has achieved running the medplum server in github actions.
We want to set up some workflows to be able to test scripts against the medplum server.. but I am currently struggling to get the Medplum server to talk to the Redis service launched by github actions.
I've tried all variations of `MEDPLUM_REDIS_HOST`:
- redis
- localhost
- 0.0.0.0
But it looks like I'm getting the same connection refused error for all of them...
I'd also be curious if anyone knows how to set up a health check command for Medplum via docker to make sure the service is healthy... github runs
2023-12-21T19:58:00.8963512Z ##[command]/usr/bin/docker inspect --format="{{if .Config.Healthcheck}}{{print .State.Health.Status}}{{end}}" 4c80ed57d3bf1edd969c97e9d2f93cd7ad77788752b1e3a8da6f9cefdf38c7f6
according to the raw logs but I think it's falsely printing the
medplum service is healthy
.