Skip to content

Commit

Permalink
feat: add docker compose with demo dashboard (flant#240)
Browse files Browse the repository at this point in the history
* feat: add docker compose with demo dashboard
  • Loading branch information
diafour authored and alberto.perdomo committed Dec 14, 2021
1 parent dcf0767 commit 977d135
Show file tree
Hide file tree
Showing 7 changed files with 563 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ Panel to show discrete statuses of multiple targets over time.

![Statusmap sample panel with dark theme](https://raw.githubusercontent.com/flant/grafana-statusmap/master/docs/img/flant-statusmap-panel-dark.png)

> Run `docker compose up` and open http://localhost:3000 in browser to see a simple demo.

## Features

Expand Down
13 changes: 13 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: "3"
services:
grafana:
image: grafana/grafana:8.2.1
ports:
- 3000:3000
environment:
GF_AUTH_ANONYMOUS_ENABLED: 1
GF_AUTH_ANONYMOUS_ORG_ROLE: Admin
GF_INSTALL_PLUGINS: marcusolsson-static-datasource,https://github.com/flant/grafana-statusmap/releases/download/v0.4.2/flant-statusmap-panel-0.4.2.zip;flant-statusmap-panel
GF_DASHBOARDS_DEFAULT_HOME_DASHBOARD_PATH: /etc/grafana/provisioning/dashboards/dashboards/statusmap.json
volumes:
- ./provisioning:/etc/grafana/provisioning
Loading

0 comments on commit 977d135

Please # to comment.