-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
executable file
·42 lines (42 loc) · 985 Bytes
/
docker-compose.yaml
File metadata and controls
executable file
·42 lines (42 loc) · 985 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
version: "3"
services:
node-red:
depends_on:
- influx
container_name: nodered-spc
user: root
build:
context: ./nodered_image
dockerfile: Dockerfile
environment:
- TZ=Europe/Amsterdam
- FLOWS=flows.json
ports:
- '1880:1880'
volumes:
- './nodered-data:/data'
influx:
container_name: influx-spc
image: 'quay.io/influxdb/influxdb:2.0.0-rc'
ports:
- '8086:8086'
volumes:
- 'influx-storage:/var/lib/influxdb'
- './influx-data/init-influxdb.sh:/init-influxdb.sh'
influx-setup:
image: 'julianfh/influxdb-setup:latest'
depends_on:
- influx
environment:
TIMEOUT: 20
INFLUXDB_SCHEMA: http
INFLUXDB_HOST: influx-spc
INFLUXDB_PORT: 8086
INFLUXDB_TOKEN: cie-token
INFLUXDB_BUCKETID: cel86
INFLUXDB_ORG: cie
INFLUXDB_USER: admin
INFLUXDB_PW: verysecurepassword1
INFLUXDB_RETENTION: 1d
volumes:
influx-storage: