27 lines
977 B
YAML
27 lines
977 B
YAML
version: '2'
|
|
services:
|
|
epasmed-prometheus:
|
|
image: prom/prometheus:v2.18.1
|
|
volumes:
|
|
- ./prometheus/:/etc/prometheus/
|
|
command:
|
|
- '--config.file=/etc/prometheus/prometheus.yml'
|
|
ports:
|
|
- 9090:9090
|
|
# On MacOS, remove next line and replace localhost by host.docker.internal in prometheus/prometheus.yml and
|
|
# grafana/provisioning/datasources/datasource.yml
|
|
network_mode: 'host' # to test locally running service
|
|
epasmed-grafana:
|
|
image: grafana/grafana:7.0.1
|
|
volumes:
|
|
- ./grafana/provisioning/:/etc/grafana/provisioning/
|
|
environment:
|
|
- GF_SECURITY_ADMIN_PASSWORD=admin
|
|
- GF_USERS_ALLOW_SIGN_UP=false
|
|
- GF_INSTALL_PLUGINS=grafana-piechart-panel
|
|
ports:
|
|
- 3000:3000
|
|
# On MacOS, remove next line and replace localhost by host.docker.internal in prometheus/prometheus.yml and
|
|
# grafana/provisioning/datasources/datasource.yml
|
|
network_mode: 'host' # to test locally running service
|