mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
e4baef94bc
* Clarify certain features, such as multiple mappings * Fixup ldap.toml sample config * Fixup docs README's port number * Fixup bad link from LDAP docs to Configuration docs * Fixup some spelling, grammar, and line endings
19 lines
425 B
Markdown
19 lines
425 B
Markdown
To build the docs locally, you need to have docker installed. The docs are built using a custom [docker](https://www.docker.com/)
|
|
image and [mkdocs](http://www.mkdocs.org/).
|
|
|
|
Build the `grafana/docs-base:latest` image:
|
|
|
|
```
|
|
$ git clone https://github.com/grafana/docs-base
|
|
$ cd docs-base
|
|
$ make docs-build
|
|
```
|
|
|
|
To build the docs:
|
|
```
|
|
$ cd docs
|
|
$ make docs
|
|
```
|
|
|
|
Open [localhost:8180](http://localhost:8180) to view the docs.
|