mirror of https://github.com/docker/docs.git
Merge pull request #2707 from dnephin/add_stop_signal_to_docs
Add stop signal to the docs
This commit is contained in:
commit
963ec1ceda
|
@ -494,9 +494,17 @@ port (a random host port will be chosen).
|
||||||
|
|
||||||
Override the default labeling scheme for each container.
|
Override the default labeling scheme for each container.
|
||||||
|
|
||||||
security_opt:
|
security_opt:
|
||||||
- label:user:USER
|
- label:user:USER
|
||||||
- label:role:ROLE
|
- label:role:ROLE
|
||||||
|
|
||||||
|
### stop_signal
|
||||||
|
|
||||||
|
Sets an alternative signal to stop the container. By default `stop` uses
|
||||||
|
SIGTERM. Setting an alternative signal using `stop_signal` will cause
|
||||||
|
`stop` to send that signal instead.
|
||||||
|
|
||||||
|
stop_signal: SIGUSR1
|
||||||
|
|
||||||
### ulimits
|
### ulimits
|
||||||
|
|
||||||
|
@ -504,11 +512,11 @@ Override the default ulimits for a container. You can either specify a single
|
||||||
limit as an integer or soft/hard limits as a mapping.
|
limit as an integer or soft/hard limits as a mapping.
|
||||||
|
|
||||||
|
|
||||||
ulimits:
|
ulimits:
|
||||||
nproc: 65535
|
nproc: 65535
|
||||||
nofile:
|
nofile:
|
||||||
soft: 20000
|
soft: 20000
|
||||||
hard: 40000
|
hard: 40000
|
||||||
|
|
||||||
### volumes, volume\_driver
|
### volumes, volume\_driver
|
||||||
|
|
||||||
|
@ -612,7 +620,7 @@ subcommand documentation for more information.
|
||||||
Specify which volume driver should be used for this volume. Defaults to
|
Specify which volume driver should be used for this volume. Defaults to
|
||||||
`local`. The Docker Engine will return an error if the driver is not available.
|
`local`. The Docker Engine will return an error if the driver is not available.
|
||||||
|
|
||||||
driver: foobar
|
driver: foobar
|
||||||
|
|
||||||
### driver_opts
|
### driver_opts
|
||||||
|
|
||||||
|
@ -620,9 +628,9 @@ Specify a list of options as key-value pairs to pass to the driver for this
|
||||||
volume. Those options are driver-dependent - consult the driver's
|
volume. Those options are driver-dependent - consult the driver's
|
||||||
documentation for more information. Optional.
|
documentation for more information. Optional.
|
||||||
|
|
||||||
driver_opts:
|
driver_opts:
|
||||||
foo: "bar"
|
foo: "bar"
|
||||||
baz: 1
|
baz: 1
|
||||||
|
|
||||||
## external
|
## external
|
||||||
|
|
||||||
|
|
|
@ -45,8 +45,7 @@ A `docker-compose.yml` looks like this:
|
||||||
redis:
|
redis:
|
||||||
image: redis
|
image: redis
|
||||||
volumes:
|
volumes:
|
||||||
logvolume01:
|
logvolume01: {}
|
||||||
driver: default
|
|
||||||
|
|
||||||
For more information about the Compose file, see the
|
For more information about the Compose file, see the
|
||||||
[Compose file reference](compose-file.md)
|
[Compose file reference](compose-file.md)
|
||||||
|
|
Loading…
Reference in New Issue