-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
46 lines (41 loc) · 974 Bytes
/
docker-compose.yml
File metadata and controls
46 lines (41 loc) · 974 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
43
44
45
46
version: "3.8"
volumes:
sockets-vol:
services:
kapacitor-udf:
build:
context: ./../..
dockerfile: Dockerfile
target: app
args:
ALPINE_IMAGE_VERSION: 3.12.1
CMAKE_BUILD_BINARY_TARGET: sdp-udf
PROJECT_ID: dynamic_window_udf_example
volumes:
- sockets-vol:/var/run/
command: /app/sdp-udf --window /var/run/dynamicWindowUDF.sock --verbose
influxdb:
image: influxdb:1.8.4
ports:
- 8086:8086
- 2003:2003
volumes:
- ./influxdb.conf:/etc/influxdb/influxdb.conf
collectd:
image: fr3nd/collectd
privileged: true
volumes:
- ./collectd.conf:/etc/collectd/collectd.conf
depends_on:
- influxdb
kapacitor:
image: kapacitor:1.5.9
volumes:
- sockets-vol:/var/run/
- ./kapacitor.conf:/etc/kapacitor/kapacitor.conf
- ./cpus:/usr/kapacitor/cpus
ports:
- 9092:9092
depends_on:
- influxdb
- kapacitor-udf