[release-12.1.1] Docs: Updated 'Run Grafana Docker image' with minor cosmetic changes.… (#109090)

Co-authored-by: Josh Kirkwood <kirkwoodjoshua@gmail.com>
This commit is contained in:
Jacob Valdez
2025-08-01 16:41:59 -05:00
committed by GitHub
parent 5ba62c974d
commit b582b64026
@@ -220,14 +220,14 @@ To run the latest stable version of Grafana using Docker Compose, complete the f
For example:
```bash
```yaml
services:
grafana:
image: grafana/grafana-enterprise
container_name: grafana
restart: unless-stopped
ports:
- '3000:3000'
- '3000:3000'
```
1. To run `docker-compose.yaml`, run the following command:
@@ -347,19 +347,19 @@ To use bind mounts, complete the following steps:
The following example runs the latest stable version of Grafana, listening on port 3000, with the container named `grafana`, persistent storage in the `grafana-storage` docker volume, the server root URL set, and the official [clock panel](/grafana/plugins/grafana-clock-panel/) plugin installed.
```bash
```yaml
services:
grafana:
image: grafana/grafana-enterprise
container_name: grafana
restart: unless-stopped
environment:
- GF_SERVER_ROOT_URL=http://my.grafana.server/
- GF_PLUGINS_PREINSTALL=grafana-clock-panel
- GF_SERVER_ROOT_URL=http://my.grafana.server/
- GF_PLUGINS_PREINSTALL=grafana-clock-panel
ports:
- '3000:3000'
- '3000:3000'
volumes:
- 'grafana_storage:/var/lib/grafana'
- 'grafana_storage:/var/lib/grafana'
volumes:
grafana_storage: {}
```