Skip to content

Commit

Permalink
docs: update docker-driver image reference
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorwhitney committed Dec 18, 2024
1 parent ad85cc2 commit ec33a3b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/sources/send-data/docker-driver/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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" >}}
Expand All @@ -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
```
Expand Down

0 comments on commit ec33a3b

Please sign in to comment.