19 lines
351 B
YAML
19 lines
351 B
YAML
version: '2'
|
|
services:
|
|
prometheus:
|
|
image: prom/prometheus
|
|
volumes:
|
|
- ./etc/prometheus:/etc/prometheus
|
|
ports:
|
|
- 9090:9090
|
|
alertmanager:
|
|
image: prom/alertmanager
|
|
volumes:
|
|
- ./etc/alertmanager:/etc/alertmanager
|
|
ports:
|
|
- 9093:9093
|
|
faketools:
|
|
image: bornholm/faketools
|
|
ports:
|
|
- 8080:8080
|