-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (35 loc) · 861 Bytes
/
docker-compose.yml
File metadata and controls
42 lines (35 loc) · 861 Bytes
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
## Docker file to start supporting services for medusa server
version: "3.8"
services:
postgres:
image: postgres:latest
restart: always
ports:
- "5432:5432"
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: medusa-docker
volumes:
- ./docker-volumes/postgres-data:/var/lib/postgresql/data
redis:
image: redis
command: redis-server /usr/local/etc/redis/redis.conf
volumes:
- ./redis.conf:/usr/local/etc/redis/redis.conf
ports:
- "6379:6379"
restart: always
search:
image: getmeili/meilisearch
restart: always
ports:
- "7700:7700"
environment:
- MEILI_MASTER_KEY=MASTER_KEY
volumes:
- ./data/db:/var/lib/postgres:cached
volumes:
kafka-volume:
zookeeper-volume:
node_modules: