From dbd1e62ac9fa2cc583ae0fdd1d578a2db437620e Mon Sep 17 00:00:00 2001 From: John Losito Date: Sun, 7 Feb 2021 18:29:40 -0500 Subject: [PATCH 1/3] Allow dependabot to check go modules --- .github/dependabot.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..61634d5a --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,7 @@ +--- +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "weekly" From e8b7f22b235df70c7302ac3b43e0f3854cbdca0e Mon Sep 17 00:00:00 2001 From: Philipp Waller <1090452+philippwaller@users.noreply.github.com> Date: Sun, 28 Feb 2021 15:33:07 +0100 Subject: [PATCH 2/3] Set InfluxDB version to 1.8 since the latest release 2.x is not fully compatible Signed-off-by: Philipp Waller <1090452+philippwaller@users.noreply.github.com> --- init/docker/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init/docker/docker-compose.yml b/init/docker/docker-compose.yml index a1fd8630..18a44488 100644 --- a/init/docker/docker-compose.yml +++ b/init/docker/docker-compose.yml @@ -3,7 +3,7 @@ version: '3' services: influxdb: restart: always - image: influxdb:latest + image: influxdb:1.8 ports: - '8086:8086' volumes: From 6b750f7016f2604c3931e54874dc20abd40ae3f5 Mon Sep 17 00:00:00 2001 From: John Warne Date: Mon, 1 Mar 2021 09:56:00 -0700 Subject: [PATCH 3/3] Specify InfluxDB version 1.8 InfluxDB 1.8 is the latest 1.x version to support the environment variables specified in the `docker-compose.yml`. If set to `latest` the newer 2.x version of InfluxDB is pulled and the user/db is not initialized. --- init/docker/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init/docker/docker-compose.yml b/init/docker/docker-compose.yml index a1fd8630..18a44488 100644 --- a/init/docker/docker-compose.yml +++ b/init/docker/docker-compose.yml @@ -3,7 +3,7 @@ version: '3' services: influxdb: restart: always - image: influxdb:latest + image: influxdb:1.8 ports: - '8086:8086' volumes: