-
Notifications
You must be signed in to change notification settings - Fork 18
/
docker-compose.yml
99 lines (90 loc) · 2.07 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
version: "3.7"
services:
postgres:
image: circleci/postgres:13.3-ram
ports:
- '127.0.0.1:5432:5432'
shm_size: '512mb'
command: postgres -c shared_buffers=512MB -c max_connections=400
environment:
PGUSER: user
POSTGRES_USER: user
POSTGRES_PASSWORD: password
POSTGRES_DB: dbname
mongo:
image: mongo:8.0
ports:
- '127.0.0.1:27017:27017'
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: password
MONGO_INITDB_DATABASE: dbname
redis:
image: cimg/redis:7.4
command: [
"redis-server",
"--protected-mode", "no",
"--databases", "1000000",
]
ports:
- '127.0.0.1:6379:6379'
rabbitmq:
image: rabbitmq:4.0-management-alpine
shm_size: '512mb'
volumes:
- /dev/shm:/var/lib/rabbitmq
ports:
- "127.0.0.1:5672:5672"
- "127.0.0.1:15672:15672"
statsd:
image: catkins/statsd-logger
ports:
- '127.0.0.1:8125:8125/udp'
minio:
image: 'minio/minio'
command: [
'server',
'/data/1', '/data/2','/data/3', '/data/4',
'--address', ':9123',
'--console-address', ':9000',
]
environment:
MINIO_ROOT_USER: 'minio'
MINIO_ROOT_PASSWORD: 'minio123'
ports:
- '127.0.0.1:9123:9123'
- '127.0.0.1:9000:9000'
minio-no-ver:
image: 'minio/minio'
command: [
'server',
'/data',
'--address', ':9124',
'--console-address', ':9001',
]
environment:
MINIO_ROOT_USER: 'minio-nv'
MINIO_ROOT_PASSWORD: 'minio-nv-123'
ports:
- '127.0.0.1:9124:9124'
- '127.0.0.1:9001:9001'
vault:
image: hashicorp/vault:1.18.1
environment:
VAULT_DEV_ROOT_TOKEN_ID: dummyroot
ports:
- '127.0.0.1:8200:8200'
- '127.0.0.1:8201:8201'
cap_add:
- IPC_LOCK
jaeger:
image: jaegertracing/all-in-one:latest
environment:
COLLECTOR_OTLP_ENABLED: true
LOG_LEVEL: debug
ports:
- "16686:16686"
- "14268:14268"
- "14250:14250"
- "4317:4317"
- "4318:4318"