From 4e83980d7820be71d919aa2bf7a757ee33cf5d7c Mon Sep 17 00:00:00 2001 From: Mike Lutz Date: Thu, 16 Aug 2018 10:52:51 -0400 Subject: [PATCH] Adding env so API headers will match ES version set by var This is calebes find, based from https://github.com/elastic/kibana/issues/6021 and then searching our source - This all came from me trying to change ES version and then getting the 'Browser client is out of date, please refresh the page' error in our stuff, and confused by it (thinking it was our version checking, not realizing it was a misleading error message from elastic --- docker-compose.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 53a3897..304f82b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,6 +3,8 @@ version: '3.0' services: conveyor-node: image: samtecspg/conveyor-node:repo-head + environment: + - KIBANA_VERSION=${ELASTIC_TAG:-6.3.2} ports: - '0.0.0.0:4000:4000' - '0.0.0.0:1880:1880'