From d0465642f3d44d8a32d4d0c4d87d8181f4eb6411 Mon Sep 17 00:00:00 2001 From: Gregory Eremin Date: Thu, 7 Jul 2016 21:33:23 +0200 Subject: [PATCH] Add run command --- Makefile | 5 ++++- README.md | 14 ++++++++++---- 2 files changed, 14 insertions(+), 5 deletions(-) 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 ```