Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.1 KB

README.md

File metadata and controls

30 lines (23 loc) · 1.1 KB

Grafana Infrastructure

This repository contains an example infrastructure for running and provisioning Grafana.

This repository is to large extent an implementation of this excellent blogpost by Graham Bryan.

Docker

The infrastructure requires Docker and Docker Compose

Running Components

Most components are runnable with docker-compose up, if you have Docker and Docker Compose installed

Infrastructure

Running components requires the infrastructure components to be running, which for instance sets up a Docker network

(cd infrastructure; docker-compose up -d)

Grafana

See instructions in grafana readme. Run using

(cd grafana; docker-compose up -d)

Building

If you want to ensure rebuilding the docker image before launching containers, you can use

docker-compose up --build --force-recreate