From ab101509db5490ff4db2a08783011643a76c4137 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ertu=C4=9Frul=20Erata?= Date: Sun, 17 Jun 2018 23:37:25 +0300 Subject: [PATCH] new version --- .../virtualization/docker/files/docker.confd | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/hardware/virtualization/docker/files/docker.confd b/hardware/virtualization/docker/files/docker.confd index ed14f85949..89183de46b 100644 --- a/hardware/virtualization/docker/files/docker.confd +++ b/hardware/virtualization/docker/files/docker.confd @@ -1,13 +1,23 @@ # /etc/conf.d/docker: config file for /etc/init.d/docker # where the docker daemon output gets piped -DOCKER_LOGFILE="/var/log/docker.log" +# 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="/var/run/docker.pid" +#DOCKER_PIDFILE="/run/docker.pid" # where the docker daemon itself is run from -DOCKER_BINARY="/usr/bin/docker" +#DOCKERD_BINARY="/usr/bin/dockerd" # any other random options you want to pass to docker DOCKER_OPTS=""