The healthcheck script doesn't work, it is built around `curl` which isn't included in the base image. To get Docker to stop killing it I added the following to my `docker-compose.yml` for now: ```yaml healthcheck: test: ['CMD','true'] ```