Add makefile with a collection of commands
This commit is contained in:
parent
038e519137
commit
5eaa58e30a
|
@ -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
|
Loading…
Reference in New Issue