Closed edoardodavini closed 10 months ago
@edoardodavini
HEALTHCHECK
instruction is already defined for the image. The Container runtime will automatically use it.
if you want to define in the docker compose file, you can use the following:
healthcheck:
test: [CMD, /bin/bash, /u01/scripts/healthcheck.sh]
interval: 1m
timeout: 30s
start_period: 3m
Hi, I wasn't able to find any reference to any healthcheck to verify if the container DB is ready to receive connections
We are trying to migrating our local developer environment from gvenzl/oci-oracle-xe to have a local environment as close as possible to our staging and production ATP
This is what we had
Easily set up this new one
But I want to add also the healthcheck. That was extremely useful. Any suggestion?
Thank you