forked from circleci/ex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
77 lines (70 loc) · 1.63 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.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:4.2
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.0
command: [
"redis-server",
"--protected-mode", "no",
"--databases", "1000000",
]
ports:
- '127.0.0.1:6379:6379'
rabbitmq:
image: rabbitmq:3.8-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'