-
Notifications
You must be signed in to change notification settings - Fork 9
/
docker-compose.yml
44 lines (39 loc) · 1.12 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
version: '3'
services:
prometheus:
container_name: prometheus
image: prom/prometheus
extra_hosts: [ 'host.docker.internal:host-gateway' ]
restart: always
command:
- --enable-feature=exemplar-storage
- --config.file=/etc/prometheus/prometheus.yml
volumes:
- ./config/prometheus/prometheus.yml:/etc/prometheus/prometheus.yml:ro
ports:
- 9090:9090
grafana:
container_name: grafana
image: grafana/grafana
extra_hosts: [ 'host.docker.internal:host-gateway' ]
restart: always
environment:
- GF_AUTH_ANONYMOUS_ENABLED=true
- GF_AUTH_ANONYMOUS_ORG_ROLE=Admin
- GF_AUTH_DISABLE_LOGIN_FORM=true
volumes:
- ./config/grafana/provisioning/datasources:/etc/grafana/provisioning/datasources:ro
- ./config/grafana/provisioning/dashboards:/etc/grafana/provisioning/dashboards:ro
ports:
- 3000:3000
zipkin:
container_name: zipkin
image: openzipkin/zipkin
extra_hosts: [ 'host.docker.internal:host-gateway' ]
restart: always
ports:
- 9411:9411
mongodb:
image: mongo:latest
ports:
- 27017:27017