From cb0d34aa0cf11c5493c465f424f6ddcde18064e0 Mon Sep 17 00:00:00 2001 From: Trevor Whitney Date: Wed, 18 Dec 2024 14:45:36 -0700 Subject: [PATCH] docs: update docker-driver image reference (#15485) (cherry picked from commit c13489d11f6d75ce0a0d676671bf57e5b0cfb670) --- docs/sources/send-data/docker-driver/_index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/sources/send-data/docker-driver/_index.md b/docs/sources/send-data/docker-driver/_index.md index 08d3a5f8b4378..d6cdb3133c187 100644 --- a/docs/sources/send-data/docker-driver/_index.md +++ b/docs/sources/send-data/docker-driver/_index.md @@ -24,10 +24,10 @@ the [Loki repository](https://github.com/grafana/loki/issues). The Docker plugin must be installed on each Docker host that will be running containers you want to collect logs from. -Run the following command to install the plugin, updating the release version if needed: +Run the following command to install the plugin, updating the release version, or changing the architecture (`arm64` and `amd64` are currently supported), if needed: ```bash -docker plugin install grafana/loki-docker-driver:2.9.2 --alias loki --grant-all-permissions +docker plugin install grafana/loki-docker-driver:3.3.2-arm64 --alias loki --grant-all-permissions ``` {{< admonition type="note" >}} @@ -52,12 +52,12 @@ Once you have successfully installed the plugin you can [configure](https://graf ## Upgrade the Docker driver client -The upgrade process involves disabling the existing plugin, upgrading, then +The upgrade process involves disabling the existing plugin, upgrading (chaning version and architecture as needed), then re-enabling and restarting Docker: ```bash docker plugin disable loki --force -docker plugin upgrade loki grafana/loki-docker-driver:2.9.2 --grant-all-permissions +docker plugin upgrade loki grafana/loki-docker-driver:3.3.2-arm64 --grant-all-permissions docker plugin enable loki systemctl restart docker ```