-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
77 lines (71 loc) · 1.42 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
version: "3.3"
services:
cryptostore:
logging:
driver: "json-file"
options:
max-size: "2000k"
max-file: "10"
depends_on:
- "influxdb"
build:
context: .
dockerfile: Dockerfile
redisdb:
logging:
driver: "json-file"
options:
max-size: "2000k"
max-file: "10"
image: redis:5.0.8
ports:
- '6379:6379'
expose:
- 6379
command: ["redis-server", "--save", "''", "--appendonly", "no"]
influxdb:
logging:
driver: "json-file"
options:
max-size: "2000k"
max-file: "10"
environment:
- INFLUXDB_CONTINUOUS_QUERIES_QUERY_STATS_ENABLED=true
container_name: influxdb
image: influxdb:1.7
volumes:
- ../data/influxdb:/var/lib/influxdb
ports:
- '8086:8086'
expose:
- 8086
chronograf:
logging:
driver: "json-file"
options:
max-size: "2000k"
max-file: "10"
container_name: chronograf
environment:
INFLUXDB_URL: http://influxdb:8086
image: chronograf:1.8
ports:
- '8888:8888'
expose:
- 8888
mysql:
logging:
driver: "json-file"
options:
max-size: "2000k"
max-file: "10"
container_name: mysql
environment:
- MYSQL_ROOT_PASSWORD=root
image: "mysql/mysql-server"
volumes:
- .mysql:/etc/mysql/
ports:
- "3306:3306"
expose:
- 3306