-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (39 loc) · 789 Bytes
/
docker-compose.yml
File metadata and controls
42 lines (39 loc) · 789 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
services:
grott:
image: ledidobe/grott:2.8.3
networks:
- net
restart: always
ports:
- "5279:5279"
environment:
- gmqttip=10.0.10.10
- ginvtype=sph
- ggrowattip=47.254.130.145
mqtt:
image: eclipse-mosquitto:2
restart: always
networks:
net:
ipv4_address: 10.0.10.10
ports:
- "37000:1883"
- "37001:9001"
volumes:
- ./mqtt/config:/mosquitto/config
- ./mqtt/data:/mosquitto/data
- ./mqtt/log:/mosquitto/log
surreal:
image: surrealdb/surrealdb:v2
command: start rocksdb:/data/store.db
restart: always
ports:
- "37002:8000"
volumes:
- ./db:/data
networks:
net:
ipam:
driver: default
config:
- subnet: 10.0.10.0/24