1
0
Fork 0

Add a Docker compose file

This commit is contained in:
Gregory Eremin 2016-07-07 13:04:47 +02:00
parent 0560f22997
commit f50c1eec56
1 changed files with 35 additions and 0 deletions

35
docker-compose.yml Normal file
View File

@ -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