github.com/docker/docker@v299999999.0.0-20200612211812-aaf470eca7b5+incompatible/contrib/init/openrc/docker.confd (about)

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