forked from rdautov/gateway-enact
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
77 lines (71 loc) · 1.74 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
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
77
version: '2'
services:
mqtt-message-broker:
image: tellu/rsd-mqtt-broker:latest
restart: unless-stopped
logging:
driver: json-file
options:
max-size: 10m
ports:
- 1883:1883
- 9001:9001
networks:
- gatewaynet
# prometheus:
# image: prom/prometheus
# restart: unless-stopped
# logging:
# driver: json-file
# options:
# max-size: 10m
# command: --storage.tsdb.retention.time=6w
# --config.file=/etc/prometheus/prometheus.yml
# --storage.tsdb.path=/prometheus
# --web.console.libraries=/usr/share/prometheus/console_libraries
# --web.console.templates=/usr/share/prometheus/consoles
# ports:
# - 9090:9090
# volumes:
# - /etc/tellugw/prometheus.yml:/etc/prometheus/prometheus.yml
# - /var/prometheus:/prometheus
# networks:
# - gatewaynet
# node-red:
# image: nodered/node-red
# restart: unless-stopped
# logging:
# driver: json-file
# options:
# max-size: 10m
# ports:
# - 1880:1880
# networks:
# - gatewaynet
# network-agent:
# image: rdautov/network-agent:1.0.1
# restart: unless-stopped
# logging:
# driver: json-file
# options:
# max-size: 10m
# networks:
# - gatewaynet
# prometheus-agent:
# image: rdautov/prometheus:1.0.1
# restart: unless-stopped
# logging:
# driver: json-file
# options:
# max-size: 10m
# #command: --network host
# network_mode: host
# networks:
# gatewaynet:
# driver: bridge
# # ipam:
# # driver: default
# # config:
# # - subnet: 192.168.100.0/24
# # gateway: 192.168.100.1
# # ip_range: 192.168.100.1/24