-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
32 lines (30 loc) · 1.01 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
version: '3.4'
services:
prometheus:
image: prom/prometheus:latest
ports:
- 9090:9090
command:
- --config.file=/etc/prometheus/prometheus.yaml
volumes:
- ./src/main/resources/static/monitoring/prometheus.yaml:/etc/prometheus/prometheus.yaml:ro
grafana:
image: grafana/grafana:latest
environment:
GF_SECURITY_ADMIN_USER: 'admin'
GF_SECURITY_ADMIN_PASSWORD: 'admin'
GF_USERS_ALLOW_SIGN_UP: 'false'
depends_on:
- prometheus
volumes:
- ./src/main/resources/static/monitoring/datasource.yaml:/etc/grafana/provisioning/datasources/datasource.yaml
- ./src/main/resources/static/monitoring/dashboard.yaml:/etc/grafana/provisioning/dashboards/dashboard.yaml
- ./src/main/resources/static/monitoring/dashboard.json:/etc/dashboards/spring-boot-grafana-dashboard.json:rw
ports:
- 3002:3000
swagger-ui:
image: swaggerapi/swagger-ui:latest
ports:
- "3001:8080"
environment:
URL: http://localhost:8080/api-docs