This repository has been archived by the owner on May 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.local.yml
79 lines (73 loc) · 1.76 KB
/
docker-compose.local.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
78
79
version: '3.9'
services:
redis:
container_name: mello-redis
image: redis:latest
deploy:
resources:
limits:
cpus: 0.25
memory: 128M
reservations:
memory: 64M
ports:
- 6379:6379
mongodb:
container_name: mello-mongodb
image: mongo:latest
deploy:
resources:
limits:
cpus: 0.25
memory: 128M
reservations:
memory: 64M
ports:
- '27017:27017'
minio:
container_name: mello-minio
image: minio/minio:edge
command: server /data --console-address ":9001"
deploy:
resources:
limits:
cpus: 0.25
memory: 128M
reservations:
memory: 64M
ports:
- '9000:9000'
- '9001:9001'
environment:
- MINIO_ROOT_USER=mello
- MINIO_ROOT_PASSWORD=12345678
influxdb:
container_name: mello-influxdb
image: influxdb:latest
deploy:
resources:
limits:
cpus: 0.05
memory: 64M
reservations:
memory: 32M
ports:
- '8086:8086'
environment:
- INFLUXDB_INIT_USERNAME=mello
- INFLUXDB_INIT_PASSWORD=mello
- INFLUXDB_INIT_ORG=mello
- INFLUXDB_INIT_BUCKET=mello
chronograf:
container_name: mello-chronograf
image: chronograf:latest
command: chronograf --influxdb-url=http://influxdb:8086
deploy:
resources:
limits:
cpus: 0.05
memory: 64M
reservations:
memory: 32M
ports:
- '8888:8888'