-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
76 lines (66 loc) · 1.75 KB
/
docker-compose.yml
File metadata and controls
76 lines (66 loc) · 1.75 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
services:
weather-fetcher:
image: ghcr.io/moleus/iot-heating-system/weather_fetcher:latest
env_file:
- .env
networks:
- iot-heating-system
ports:
- "127.0.0.1:8080:8080"
pipes-master:
image: ghcr.io/moleus/iot-heating-system/pipes_master:latest
networks:
- iot-heating-system
temperature-changer:
image: ghcr.io/moleus/iot-heating-system/temperature_changer:latest
networks:
- iot-heating-system
depends_on:
- mosquitto
fuel-analyzer:
image: ghcr.io/moleus/iot-heating-system/fuel_analyzer:latest
networks:
- iot-heating-system
heater:
image: ghcr.io/moleus/iot-heating-system/heater:latest
networks:
- iot-heating-system
expense-predictor:
image: ghcr.io/moleus/iot-heating-system/expense_predictor:latest
networks:
- iot-heating-system
victoriametrics:
image: victoriametrics/victoria-metrics:v1.100.1
ports:
- "127.0.0.1:8428:8428"
networks:
- iot-heating-system
mosquitto:
image: eclipse-mosquitto:2.0.18
user: "1000:1000"
ports:
- "1883:1883"
volumes:
- ./mqtt/mosquitto.conf:/mosquitto/config/mosquitto.conf
networks:
- iot-heating-system
telegraf:
image: telegraf:1.30.2
volumes:
- ./mqtt/telegraf.conf:/etc/telegraf/telegraf.conf
networks:
- iot-heating-system
grafana:
image: grafana/grafana:10.1.10
environment:
- GF_SECURITY_ADMIN_USER=admin
- GF_SECURITY_ADMIN_PASSWORD=secret
- GF_INSTALL_PLUGINS=grafana-clock-panel,grafana-simple-json-datasource
volumes:
- ./grafana/:/etc/grafana/provisioning/
ports:
- "127.0.0.1:3000:3000"
networks:
- iot-heating-system
networks:
iot-heating-system: