diff --git a/Makefile b/Makefile index 8059ce1..92e257a 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,10 @@ graphite: - docker-compose build . + docker-compose build fast: @echo "Graphite is fast now!" again: + +run: + docker-compose up diff --git a/README.md b/README.md index d8dbd41..ea70fe1 100644 --- a/README.md +++ b/README.md @@ -18,17 +18,23 @@ Grafana 3 is also included. * [Graphite API](https://github.com/brutasse/graphite-api) `latest` * [Grafana](https://github.com/grafana/grafana/tree/v3.1.0-beta1) `v3.1.0-beta1` -**Local installation:** +## Building Make sure [Docker](https://www.docker.com/products/docker) and [Docker Compose](https://www.docker.com/products/docker-compose) are installed. ``` -make graphite fast +$ make graphite fast ``` -**Re-installation:** +### Re-building ``` -make graphite fast again +$ make graphite fast again +``` + +## Starting + +``` +$ make run ```