-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
60 lines (55 loc) · 949 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
60 lines (55 loc) · 949 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
version: '3'
services:
db:
build: ./db/
restart: always
volumes:
- postgres:/var/lib/postgresql/data:Z
env_file:
- .env.development
- .env.development.local
ports:
- "5433:5432"
container_name: db
networks:
- db-network
api:
build:
context: .
dockerfile: docker/Dockerfile
target: dev
volumes:
- .:/app
ports:
- "3001:3000"
depends_on:
- db
env_file:
- .env.development
networks:
- db-network
command: /start
meilisearch:
image: getmeili/meilisearch
networks:
- db-network
env_file:
- .env.development
ports:
- 7700:7700
volumes:
- meilisearch:/data.ms
adminer:
image: adminer
networks:
- db-network
ports:
- "3002:8080"
depends_on:
- db
volumes:
postgres:
meilisearch:
networks:
db-network:
external: false