From 7bc27aa6f448fc9d8cb39c367a1daa013737448d Mon Sep 17 00:00:00 2001 From: Horo Date: Thu, 11 Aug 2022 05:00:29 +0200 Subject: [PATCH] Update cadvisor to `latest` version - not using the latest tag Since they don't update the latest tag... the latest tag is now 20 months old and it seems like they will/can not update it in the future... Unsure what to do about that but for now I would just update the tag... ^^' --- .../prometheus/exporters/cadvisor/docker-compose.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docker-compose/prometheus/exporters/cadvisor/docker-compose.yml b/docker-compose/prometheus/exporters/cadvisor/docker-compose.yml index 1f682dc..8ebbb72 100755 --- a/docker-compose/prometheus/exporters/cadvisor/docker-compose.yml +++ b/docker-compose/prometheus/exporters/cadvisor/docker-compose.yml @@ -3,7 +3,9 @@ version: '3' services: cadvisor: - image: gcr.io/cadvisor/cadvisor:latest + image: gcr.io/cadvisor/cadvisor:v0.45.0 # latest tag is not updated... + # https://github.com/google/cadvisor/issues/3066 + # To manual check versions: https://github.com/google/cadvisor/releases container_name: cadvisor # ports: # - "8080:8080" @@ -15,4 +17,4 @@ services: - /dev/disk/:/dev/disk:ro devices: - /dev/kmsg - restart: unless-stopped \ No newline at end of file + restart: unless-stopped