mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
275677e94f
* Use rc_ulimit for ulimit constraints * Synchronize ulimit settings to systemd's * Add support for reload command * Add support for retry settings for docker stop/restart Signed-off-by: Manuel Rüger <manuel@rueg.eu>
29 lines
924 B
Text
29 lines
924 B
Text
# /etc/conf.d/docker: config file for /etc/init.d/docker
|
|
|
|
# where the docker daemon output gets piped
|
|
# this contains both stdout and stderr. If you need to separate them,
|
|
# see the settings below
|
|
#DOCKER_LOGFILE="/var/log/docker.log"
|
|
|
|
# where the docker daemon stdout gets piped
|
|
# if this is not set, DOCKER_LOGFILE is used
|
|
#DOCKER_OUTFILE="/var/log/docker-out.log"
|
|
|
|
# where the docker daemon stderr gets piped
|
|
# if this is not set, DOCKER_LOGFILE is used
|
|
#DOCKER_ERRFILE="/var/log/docker-err.log"
|
|
|
|
# where docker's pid get stored
|
|
#DOCKER_PIDFILE="/run/docker.pid"
|
|
|
|
# Settings for process limits (ulimit)
|
|
#DOCKER_ULIMIT="-c unlimited -n 1048576 -u unlimited"
|
|
|
|
# seconds to wait for sending SIGTERM and SIGKILL signals when stopping docker
|
|
#DOCKER_RETRY="TERM/60/KILL/10"
|
|
|
|
# where the docker daemon itself is run from
|
|
#DOCKERD_BINARY="/usr/bin/dockerd"
|
|
|
|
# any other random options you want to pass to docker
|
|
DOCKER_OPTS=""
|