-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
53 lines (48 loc) · 1.07 KB
/
docker-compose.yml
File metadata and controls
53 lines (48 loc) · 1.07 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
version: '3.8'
services:
n3uron:
image: n3uronhub/n3uron:v1.21.6
hostname: edge01
ports:
- 8003:8003
volumes:
- n3_config:/opt/n3uron/config
- n3_data:/opt/n3uron/data
- n3_licenses:/opt/n3uron/licenses
- n3_log:/opt/n3uron/log
restart: always
hivemq:
image: hivemq/hivemq-ce:2023.6
ports:
- 1883:1883
restart: always
influx:
image: influxdb:2.6
ports:
- 8086:8086
environment:
- DOCKER_INFLUXDB_INIT_MODE=setup
- DOCKER_INFLUXDB_INIT_USERNAME=admin
- DOCKER_INFLUXDB_INIT_PASSWORD=n3urondemo
- DOCKER_INFLUXDB_INIT_ORG=N3uron
- DOCKER_INFLUXDB_INIT_BUCKET=demo
- DOCKER_INFLUXDB_INIT_RETENTION=1w
volumes:
- influx_config:/etc/influxdb2
- influx_data:/var/lib/influxdb2
restart: always
grafana:
image: grafana/grafana-oss:9.4.7
ports:
- 3000:3000
volumes:
- grafana_data:/var/lib/grafana
restart: always
volumes:
n3_config:
n3_data:
n3_licenses:
n3_log:
influx_config:
influx_data:
grafana_data: