Docker healthcheck timings - add startup delay and changed interval (#9913)
* Add healthcheck startup delay by 5secs and reduced interval check to 15s to reduce waiting time for docker aware edge routers bringing an instance onlinepull/9931/head
parent
e9eb3549d3
commit
d5305000f1
|
@ -0,0 +1 @@
|
||||||
|
Added startup_delay to docker healthcheck to reduce waiting time for coming online, updated readme for extra options, contributed by @Maquis196.
|
|
@ -88,5 +88,5 @@ EXPOSE 8008/tcp 8009/tcp 8448/tcp
|
||||||
|
|
||||||
ENTRYPOINT ["/start.py"]
|
ENTRYPOINT ["/start.py"]
|
||||||
|
|
||||||
HEALTHCHECK --interval=1m --timeout=5s \
|
HEALTHCHECK --start-period=5s --interval=15s --timeout=5s \
|
||||||
CMD curl -fSs http://localhost:8008/health || exit 1
|
CMD curl -fSs http://localhost:8008/health || exit 1
|
||||||
|
|
|
@ -191,6 +191,16 @@ whilst running the above `docker run` commands.
|
||||||
```
|
```
|
||||||
--no-healthcheck
|
--no-healthcheck
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Disabling the healthcheck in docker-compose file
|
||||||
|
|
||||||
|
If you wish to disable the healthcheck via docker-compose, append the following to your service configuration.
|
||||||
|
|
||||||
|
```
|
||||||
|
healthcheck:
|
||||||
|
disable: true
|
||||||
|
```
|
||||||
|
|
||||||
## Setting custom healthcheck on docker run
|
## Setting custom healthcheck on docker run
|
||||||
|
|
||||||
If you wish to point the healthcheck at a different port with docker command, add the following
|
If you wish to point the healthcheck at a different port with docker command, add the following
|
||||||
|
@ -202,14 +212,15 @@ If you wish to point the healthcheck at a different port with docker command, ad
|
||||||
## Setting the healthcheck in docker-compose file
|
## Setting the healthcheck in docker-compose file
|
||||||
|
|
||||||
You can add the following to set a custom healthcheck in a docker compose file.
|
You can add the following to set a custom healthcheck in a docker compose file.
|
||||||
You will need version >2.1 for this to work.
|
You will need docker-compose version >2.1 for this to work.
|
||||||
|
|
||||||
```
|
```
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "curl", "-fSs", "http://localhost:8008/health"]
|
test: ["CMD", "curl", "-fSs", "http://localhost:8008/health"]
|
||||||
interval: 1m
|
interval: 15s
|
||||||
timeout: 10s
|
timeout: 5s
|
||||||
retries: 3
|
retries: 3
|
||||||
|
start_period: 5s
|
||||||
```
|
```
|
||||||
|
|
||||||
## Using jemalloc
|
## Using jemalloc
|
||||||
|
|
Loading…
Reference in New Issue