Revert "[v10.0.x] [feat] docs; update admonition syntax" (#68980)

Revert "[v10.0.x] [feat] docs; update admonition syntax (#68857)"

This reverts commit 1e8c28eff4.
This commit is contained in:
Jack Baldry
2023-05-24 14:54:52 +01:00
committed by GitHub
parent 0946897262
commit 2f866cda62
144 changed files with 405 additions and 1840 deletions
@@ -30,9 +30,7 @@ The default images are based on the popular [Alpine Linux project](http://alpine
The Alpine variant is highly recommended when security and final image size being as small as possible is desired. The main caveat to note is that it uses [musl libc](http://www.musl-libc.org) instead of [glibc and friends](http://www.etalabs.net/compare_libcs.html), so certain software might run into issues depending on the depth of their libc requirements. However, most software don't have an issue with this, so this variant is usually a very safe choice.
{{% admonition type="note" %}}
Grafana docker images were based on [Ubuntu](https://ubuntu.com/) prior to version 6.4.0.
{{% /admonition %}}
> **Note:** Grafana docker images were based on [Ubuntu](https://ubuntu.com/) prior to version 6.4.0.
## Ubuntu image
@@ -48,9 +46,7 @@ You can run the latest Grafana version, run a specific version, or run an unstab
### Run the latest stable version of Grafana
{{% admonition type="note" %}}
If you are on a Linux system, you might need to add `sudo` before the command or add your user to the `docker` group.
{{% /admonition %}}
> **Note:** If you are on a Linux system, you might need to add `sudo` before the command or add your user to the `docker` group.
```bash
docker run -d -p 3000:3000 grafana/grafana-enterprise
@@ -58,9 +54,7 @@ docker run -d -p 3000:3000 grafana/grafana-enterprise
### Run a specific version of Grafana
{{% admonition type="note" %}}
If you are on a Linux system, you might need to add `sudo` before the command or add your user to the `docker` group.
{{% /admonition %}}
> **Note:** If you are on a Linux system, you might need to add `sudo` before the command or add your user to the `docker` group.
```bash
docker run -d -p 3000:3000 --name grafana grafana/grafana-enterprise:<version number>
@@ -96,9 +90,7 @@ docker run -d \
grafana/grafana-enterprise
```
{{% admonition type="note" %}}
If you need to specify the version of a plugin, then you can add it to the `GF_INSTALL_PLUGINS` environment variable. Otherwise, the latest is used. For example: `-e "GF_INSTALL_PLUGINS=grafana-clock-panel 1.0.1,grafana-simple-json-datasource 1.3.5"`.
{{% /admonition %}}
> **Note:** If you need to specify the version of a plugin, then you can add it to the `GF_INSTALL_PLUGINS` environment variable. Otherwise, the latest is used. For example: `-e "GF_INSTALL_PLUGINS=grafana-clock-panel 1.0.1,grafana-simple-json-datasource 1.3.5"`.
### Install plugins from other sources