SONAR-12067 Update docker image documentation about graceful shutdown

This commit is contained in:
Pierre Guillot 2019-07-26 16:04:56 +02:00
parent 09637c3e74
commit 91dc4e5add
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ $ docker run -ti sonarqube-custom
Starting from SonarQube 7.8, SonarQube stops gracefully, waiting for any tasks in progress to finish. Waiting for in-progress tasks to finish can take a large amount of time which the docker does not expect by default when stopping. To avoid having the SonarQube instance killed by the Docker daemon after 10 seconds, it is best to configure a timeout to stop the container with `--stop-timeout`. For example: Starting from SonarQube 7.8, SonarQube stops gracefully, waiting for any tasks in progress to finish. Waiting for in-progress tasks to finish can take a large amount of time which the docker does not expect by default when stopping. To avoid having the SonarQube instance killed by the Docker daemon after 10 seconds, it is best to configure a timeout to stop the container with `--stop-timeout`. For example:
```console ```console
docker run --stop-timeout 3600 docker run --stop-timeout 3600 %%IMAGE%%
``` ```
## Administration ## Administration