docker.confd 718 B

123456789101112131415161718192021222324
  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. # where the docker daemon itself is run from
  15. #DOCKERD_BINARY="/usr/bin/dockerd"
  16. # any other random options you want to pass to docker
  17. DOCKER_OPTS=""