Skip to content

Commit

Permalink
docs: update docker-driver image reference (#15485)
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorwhitney authored Dec 18, 2024
1 parent fad06ee commit c13489d
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 c13489d

Please sign in to comment.