File tree 2 files changed +51
-32
lines changed
2 files changed +51
-32
lines changed Original file line number Diff line number Diff line change
1
+ app :
2
+ build : .
3
+ volumes :
4
+ - .:/app:rw
5
+ links :
6
+ - redis:redis
7
+ - influx:influx
8
+ ports :
9
+ - " 8500:8500"
10
+ - " 8888:8888"
11
+ environment :
12
+ - RedisAddress=redis:6379
13
+ - RedisPassword=very_secret
14
+ - InfluxAddress=influx
15
+ - InfluxDBName=events
16
+ - INFLUX_USER=root
17
+ - INFLUX_PWD=root
18
+
19
+ redis :
20
+ image : tutum/redis
21
+ environment :
22
+ - REDIS_PASS=very_secret
23
+ - REDIS_MAXMEMORY_POLICY="allkeys-lru"
24
+ - REDIS_MAXMEMORY="512mb"
25
+
26
+ influx :
27
+ image : tutum/influxdb:0.9
28
+ environment :
29
+ - ADMIN_USER=root
30
+ - INFLUXDB_INIT_PWD=root
31
+ - PRE_CREATE_DB=events
32
+ ports :
33
+ - " 8083:8083"
34
+ - " 8086:8086"
35
+
36
+ grafana :
37
+ image : tutum/grafana
38
+ links :
39
+ - influx:influx
40
+ ports :
41
+ - " 80:80"
42
+ environment :
43
+ - HTTP_USER=grafanauser
44
+ - HTTP_PASS=grafanapass
45
+ - INFLUXDB_PROTO=http
46
+ - INFLUXDB_HOST=influx
47
+ - INFLUXDB_PORT=8086
48
+ - INFLUXDB_NAME=logrus
49
+ - INFLUXDB_USER=root
50
+ - INFLUXDB_PASS=root
51
+ - INFLUXDB_IS_GRAFANADB=true
Original file line number Diff line number Diff line change 4
4
- .:/app:rw
5
5
links :
6
6
- redis:redis
7
- - influx:influx
8
7
ports :
9
8
- " 8500:8500"
10
9
- " 8888:8888"
11
10
environment :
12
11
- RedisAddress=redis:6379
13
12
- RedisPassword=very_secret
14
- - InfluxAddress=influx
15
- - InfluxDBName=events
16
- - INFLUX_USER=root
17
- - INFLUX_PWD=root
18
13
19
14
redis :
20
15
image : tutum/redis
21
16
environment :
22
17
- REDIS_PASS=very_secret
23
18
- REDIS_MAXMEMORY_POLICY="allkeys-lru"
24
19
- REDIS_MAXMEMORY="512mb"
25
-
26
- influx :
27
- image : tutum/influxdb:0.9
28
- environment :
29
- - ADMIN_USER=root
30
- - INFLUXDB_INIT_PWD=root
31
- - PRE_CREATE_DB=events
32
- ports :
33
- - " 8083:8083"
34
- - " 8086:8086"
35
-
36
- grafana :
37
- image : tutum/grafana
38
- links :
39
- - influx:influx
40
- ports :
41
- - " 80:80"
42
- environment :
43
- - HTTP_USER=grafanauser
44
- - HTTP_PASS=grafanapass
45
- - INFLUXDB_PROTO=http
46
- - INFLUXDB_HOST=influx
47
- - INFLUXDB_PORT=8086
48
- - INFLUXDB_NAME=logrus
49
- - INFLUXDB_USER=root
50
- - INFLUXDB_PASS=root
51
- - INFLUXDB_IS_GRAFANADB=true
You can’t perform that action at this time.
0 commit comments