Add a Docker compose file
This commit is contained in:
parent
0560f22997
commit
f50c1eec56
|
@ -0,0 +1,35 @@
|
||||||
|
version: '2'
|
||||||
|
services:
|
||||||
|
carbon:
|
||||||
|
image: carbon:v1
|
||||||
|
build:
|
||||||
|
dockerfile: Carbon.dockerfile
|
||||||
|
context: .
|
||||||
|
ports:
|
||||||
|
- '2003'
|
||||||
|
- '2004'
|
||||||
|
- '7002'
|
||||||
|
volumes:
|
||||||
|
- /data/graphite/whisper
|
||||||
|
brubeck:
|
||||||
|
image: brubeck:v1
|
||||||
|
build:
|
||||||
|
dockerfile: Brubeck.dockerfile
|
||||||
|
context: .
|
||||||
|
ports:
|
||||||
|
- '8080'
|
||||||
|
- '8126'
|
||||||
|
- '9126'
|
||||||
|
depends_on:
|
||||||
|
- carbon
|
||||||
|
grafana:
|
||||||
|
image: grafana:v1
|
||||||
|
build:
|
||||||
|
dockerfile: Grafana.dockerfile
|
||||||
|
context: .
|
||||||
|
ports:
|
||||||
|
- '3000'
|
||||||
|
depends_on:
|
||||||
|
- carbon
|
||||||
|
- brubeck
|
||||||
|
|
Loading…
Reference in New Issue