-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
49 lines (49 loc) · 1.29 KB
/
docker-compose.yaml
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
version: "3.8"
services:
frontend:
container_name: frontend
build:
context: ./frontend
dockerfile: Dockerfile
volumes:
- ./frontend/src:/app/src
- ./frontend/public:/app/public
ports:
- "3000:5173"
data_service:
container_name: data_service
build:
context: ./backend/data_service
dockerfile: Dockerfile
ports:
- "8000:8000"
volumes:
- ./backend/data_service:/usr/src/app/data_service/src
depends_on:
- redis
display_service:
container_name: display_service
build:
context: ./backend/display_service
dockerfile: Dockerfile
ports:
- "8001:8001"
volumes:
- ./backend/display_service:/usr/src/app/display_service/src
depends_on:
- redis
auth_service:
container_name: auth_service
build:
context: ./backend/auth_service
dockerfile: Dockerfile
ports:
- "8002:8002"
volumes:
- ./backend/auth_service:/usr/src/app/auth_service/src
depends_on:
- redis
redis:
image: redis
ports:
- "6379:6379"