From 87ab727f6fca7f2e4fe37c3241e04b6a18e990e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Ostroluck=C3=BD?= Date: Sun, 14 Mar 2021 12:07:10 +0100 Subject: [PATCH] Set shell verbosity to debug by default MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This will make it so stack trace in case of error is visible See #78 Signed-off-by: Gabriel Ostrolucký --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 2ee97743..847de843 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,4 +32,6 @@ COPY src /app/src/ RUN composer dump-autoload -a --no-dev +ENV SHELL_VERBOSITY=3 + ENTRYPOINT ["/app/bin/console.php"]