docker.confd 924 B

123456789101112131415161718192021222324252627282930
  1. # /etc/conf.d/docker: config file for /etc/init.d/docker
  2. # where the docker daemon output gets piped
  3. # this contains both stdout and stderr. If you need to separate them,
  4. # see the settings below
  5. #DOCKER_LOGFILE="/var/log/docker.log"
  6. # where the docker daemon stdout gets piped
  7. # if this is not set, DOCKER_LOGFILE is used
  8. #DOCKER_OUTFILE="/var/log/docker-out.log"
  9. # where the docker daemon stderr gets piped
  10. # if this is not set, DOCKER_LOGFILE is used
  11. #DOCKER_ERRFILE="/var/log/docker-err.log"
  12. # where docker's pid get stored
  13. #DOCKER_PIDFILE="/run/docker.pid"
  14. # Settings for process limits (ulimit)
  15. #DOCKER_ULIMIT="-c unlimited -n 1048576 -u unlimited"
  16. # seconds to wait for sending SIGTERM and SIGKILL signals when stopping docker
  17. #DOCKER_RETRY="TERM/60/KILL/10"
  18. # where the docker daemon itself is run from
  19. #DOCKERD_BINARY="/usr/bin/dockerd"
  20. # any other random options you want to pass to docker
  21. DOCKER_OPTS=""