-
-
Notifications
You must be signed in to change notification settings - Fork 521
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
51 lines (51 loc) · 1.07 KB
/
docker-compose.yml
File metadata and controls
51 lines (51 loc) · 1.07 KB
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
version: "3.6"
services:
postgres:
image: postgres:latest
restart: on-failure
volumes:
- pg-data:/var/lib/postgresql/data
environment:
- POSTGRES_DB=postgres
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
ports:
- "5432:5432"
container_name: flexsearch_postgres_db
command:
- "postgres"
- "-c"
- "shared_preload_libraries=pg_stat_statements"
clickhouse:
image: yandex/clickhouse-server:latest
restart: on-failure
volumes:
- ch-data:/var/lib/clickhouse
ports:
- "8123:8123"
container_name: flexsearch_clickhouse_db
redis:
image: redislabs/rejson:latest
restart: on-failure
volumes:
- rd-data:/data
ports:
- "6379:6379"
container_name: flexsearch_redis_db
mongo:
image: mongo:latest
restart: on-failure
volumes:
- mg-data:/data
ports:
- "27017:27017"
container_name: flexsearch_mongo_db
volumes:
pg-data:
driver: local
ch-data:
driver: local
rd-data:
driver: local
mg-data:
driver: local