1
0
Fork 0

Add makefile with a collection of commands

This commit is contained in:
Gregory Eremin 2016-07-06 21:51:48 +02:00
parent 038e519137
commit 5eaa58e30a
No known key found for this signature in database
GPG Key ID: 5EFA427EEC26E86C
1 changed files with 13 additions and 0 deletions

13
Makefile Normal file
View File

@ -0,0 +1,13 @@
graphite:
docker build -t localhots/carbon:v1 -f Dockerfile-carbon .
docker build -t localhots/brubeck:v1 -f Dockerfile-brubeck .
docker run -d --name carbon \
-p 2003:2003 \
-p 2004:2004 \
-p 7002:7002 \
localhots/carbon:v1
docker run -d --name brubeck --link carbon:carbon \
-p 8080:8080 \
-p 8126:8126 \
-p 9126:9126 \
localhots/brubeck:v1