-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
62 lines (57 loc) · 1.2 KB
/
Copy pathdocker-compose.yaml
File metadata and controls
62 lines (57 loc) · 1.2 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
62
version: '3'
services:
core:
container_name: squirrel-core
build: .
restart: always
links:
- ms
- db
- redis
ports:
- ${CORE_PORT:-8000}:8000
volumes:
- data.squirrel:/data
- ./squirrel_core:/app/squirrel_core
- ./templates:/app/templates
tty: true
ms:
container_name: meilisearch
image: getmeili/meilisearch:latest
environment:
- MEILI_NO_ANALYTICS=true
- MEILI_ENV=${MEILI_ENV:-development}
- MEILI_LOG_LEVEL
- MEILI_DB_PATH=/data.ms
ports:
- ${MEILI_PORT:-7700}:7700
volumes:
- data.ms:/data.ms
restart: unless-stopped
env_file:
- core.env
db:
container_name: postgres
image: postgres:alpine
ports:
- ${DB_PORT:-5432}:5432
volumes:
- data.db:/var/lib/postgresql/data
restart: unless-stopped
env_file:
- core.env
redis:
container_name: redis
image: redis:alpine
ports:
- ${REDIS_PORT:-6379}:6379
volumes:
- data.redis:/data
restart: unless-stopped
env_file:
- core.env
volumes:
data.ms:
data.db:
data.redis:
data.squirrel: