From 89ced4253c9f4e9a5e85395a02d3d5d17e85f3cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Thu, 4 Jun 2020 11:34:22 +0200 Subject: [PATCH] use -d:chronicles_colors:none when creating docker image MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4e30a3f2e..f65e9b32a 100644 --- a/Makefile +++ b/Makefile @@ -13,8 +13,9 @@ BUILD_SYSTEM_DIR := vendor/nimbus-build-system # Docker image name DOCKER_IMAGE_TAG ?= latest DOCKER_IMAGE_NAME ?= statusteam/nim-waku:$(DOCKER_IMAGE_TAG) -# Necessary to enable Prometheus HTTP endpoint for metrics -DOCKER_IMAGE_NIM_PARAMS ?= -d:insecure +# -d:insecure - Necessary to enable Prometheus HTTP endpoint for metrics +# -d:chronicles_colors:none - Necessary to disable colors in logs for Docker +DOCKER_IMAGE_NIM_PARAMS ?= -d:chronicles_colors:none -d:insecure # we don't want an error here, so we can handle things later, in the ".DEFAULT" target -include $(BUILD_SYSTEM_DIR)/makefiles/variables.mk