-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
27 lines (24 loc) · 791 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
27 lines (24 loc) · 791 Bytes
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
version: "3.8"
services:
thermal-ctrl:
build: .
command: ["python", "-m", "thermal_ctrl", "dry-run", "--config", "configs/simulated.yaml", "--seed", "7"]
volumes:
- ./artifacts:/app/artifacts
restart: "no"
prometheus:
image: prom/prometheus:v2.52.0
volumes:
- ./configs/prometheus.yml:/etc/prometheus/prometheus.yml
ports:
- "9090:9090"
grafana:
image: grafana/grafana:11.0.0
ports:
- "3000:3000"
environment:
- GF_SECURITY_ADMIN_PASSWORD=admin
volumes:
- ./charts/grafana-datasource.yml:/etc/grafana/provisioning/datasources/datasource.yml
- ./charts/grafana-dashboard.yml:/etc/grafana/provisioning/dashboards/dashboard.yml
- ./charts/grafana.json:/var/lib/grafana/dashboards/thermal.json