-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
48 lines (44 loc) · 910 Bytes
/
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
version: "2.1"
services:
rsyslog:
image: rsyslog/syslog_appliance_alpine
ports:
- '514:514'
- '1601:1601'
- '6514:6514'
environment:
- RSYSLOG_CONF=/config/rsyslog.conf
volumes:
- ./rsyslog/log:/log
- ./rsyslog/work:/work
- ./rsyslog/config:/config
influxdb:
image: influxdb
ports:
- '8086:8086'
env_file:
- ./.environment.env
volumes:
- './influxdb:/var/lib/influxdb'
telegraf:
depends_on:
- influxdb
image: telegraf
command:
- '--config=/telegraf/telegraf.conf'
ports:
- '8092:8092'
- '8094:8094'
- '8125:8125'
volumes:
- './telegraf/:/telegraf/'
env_file:
- ./.environment.env
grafana:
image: grafana/grafana
ports:
- '3000:3000'
#volumes:
# - ./grafana:/etc/grafana/
env_file:
- ./.environment.env