diff --git a/docs/reference/commandline/dockerd.md b/docs/reference/commandline/dockerd.md index a482577fb7..0ac52c826a 100644 --- a/docs/reference/commandline/dockerd.md +++ b/docs/reference/commandline/dockerd.md @@ -1400,6 +1400,10 @@ This is a full example of the allowed configuration options on Linux: "log-driver": "json-file", "log-level": "", "log-opts": { + "cache-disabled": "false", + "cache-max-file": "5", + "cache-max-size": "20m", + "cache-compress": "true", "env": "os,customer", "labels": "somelabel", "max-file": "5", diff --git a/docs/reference/commandline/stop.md b/docs/reference/commandline/stop.md index e4c567fb78..282a378582 100644 --- a/docs/reference/commandline/stop.md +++ b/docs/reference/commandline/stop.md @@ -19,7 +19,9 @@ Options: ## Description The main process inside the container will receive `SIGTERM`, and after a grace -period, `SIGKILL`. +period, `SIGKILL`. The first signal can be changed with the `STOPSIGNAL` +instruction in the container's Dockerfile, or the `--stop-signal` option to +`docker run`. ## Examples