forked from choras-org/CHORAS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
40 lines (36 loc) · 749 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
40 lines (36 loc) · 749 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
services:
db_service:
platform: linux/amd64
image: postgres:13
ports:
- "5432:5432"
env_file:
- .env.db
volumes:
- postgresql_data:/var/lib/postgresql/data/
redis:
platform: linux/amd64
image: redis:alpine
frontend:
platform: linux/amd64
pull_policy: always
image: silvinwillemsen/choras-frontend:latest
ports:
- "5173:5173"
environment:
- REACT_APP_API_URL=http://localhost:5001
depends_on:
- backend
backend:
platform: linux/amd64
pull_policy: always
image: silvinwillemsen/choras-backend:latest
ports:
- "5001:5001"
env_file:
- .env.api
depends_on:
- db_service
- redis
volumes:
postgresql_data: