-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.dev.yml
More file actions
61 lines (56 loc) · 1.14 KB
/
compose.dev.yml
File metadata and controls
61 lines (56 loc) · 1.14 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
52
53
54
55
56
57
58
59
60
61
services:
backend:
build:
context: ./backend
dockerfile: ./docker/Dockerfile
container_name: medusa-backend
depends_on:
- postgres
- redis
ports:
- 9000:9000
networks:
- internal
restart: unless-stopped
env_file:
- .env
postgres:
image: postgres:16.2-alpine
ports:
- 5432
container_name: medusa-postgres
environment:
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_DB: ${POSTGRES_DB}
POSTGRES_HOST_AUTH_METHOD: trust
networks:
- internal
restart: unless-stopped
redis:
image: redis:7
container_name: medusa-redis
ports:
- 6379
networks:
- internal
restart: unless-stopped
meilisearch:
image: getmeili/meilisearch:v1.8
container_name: medusa-meilisearch
ports:
- 7700
environment:
- MEILI_MASTER_KEY=${MEILI_MASTER_KEY}
- MEILI_NO_ANALYTICS=true
- MEILI_NO_SENTRY=true
volumes:
- meilisearch_data:/data.ms
networks:
- internal
restart: unless-stopped
networks:
internal:
external: false
driver: bridge
volumes:
meilisearch_data: