From 1cfba831644d67d326ef9b9c460297a9e88f45d6 Mon Sep 17 00:00:00 2001 From: Nick Couchman Date: Wed, 28 Mar 2018 19:54:07 -0400 Subject: [PATCH] GUACAMOLE-42: Configure log level in docker. --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0e7ab0fe..3449f087 100644 --- a/Dockerfile +++ b/Dockerfile @@ -82,6 +82,7 @@ ARG PREFIX_DIR=/usr/local/guacamole # Runtime environment ENV LC_ALL=en_US.UTF-8 +ENV GUACD_LOG_LEVEL=info ARG RUNTIME_DEPENDENCIES=" \ cairo \ @@ -126,5 +127,5 @@ EXPOSE 4822 # Note the path here MUST correspond to the value specified in the # PREFIX_DIR build argument. # -CMD [ "/usr/local/guacamole/sbin/guacd", "-b", "0.0.0.0", "-f" ] +CMD [ "/usr/local/guacamole/sbin/guacd", "-b", "0.0.0.0", "-L", "$GUACD_LOG_LEVEL", "-f" ]