mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-03 10:11:03 +00:00
- Explicity add go app to the example container, so it fails if you haven't built it. - spin up 2 goapps and 3 elastic searches
57 lines
763 B
YAML
57 lines
763 B
YAML
client:
|
|
build: client
|
|
links:
|
|
- qotd
|
|
- pyapp
|
|
pyapp:
|
|
build: pyapp
|
|
ports:
|
|
- "5000"
|
|
links:
|
|
- qotd
|
|
- redis
|
|
- goapp1
|
|
- goapp2
|
|
qotd:
|
|
build: qotd
|
|
expose:
|
|
- "4446"
|
|
redis:
|
|
image: redis
|
|
goapp1:
|
|
build: goapp
|
|
ports:
|
|
- "8080"
|
|
links:
|
|
- elasticsearch1
|
|
- elasticsearch2
|
|
- elasticsearch3
|
|
goapp2:
|
|
build: goapp
|
|
ports:
|
|
- "8080"
|
|
links:
|
|
- elasticsearch1
|
|
- elasticsearch2
|
|
- elasticsearch3
|
|
elasticsearch1:
|
|
image: elasticsearch
|
|
expose:
|
|
- "9200"
|
|
- "9300"
|
|
elasticsearch2:
|
|
image: elasticsearch
|
|
expose:
|
|
- "9200"
|
|
- "9300"
|
|
links:
|
|
- elasticsearch1
|
|
elasticsearch3:
|
|
image: elasticsearch
|
|
expose:
|
|
- "9200"
|
|
- "9300"
|
|
links:
|
|
- elasticsearch1
|
|
- elasticsearch2
|