-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
57 lines (52 loc) · 1.12 KB
/
docker-compose.yml
File metadata and controls
57 lines (52 loc) · 1.12 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
services:
frontend:
container_name: frontend
build:
context: ./reactjs_frontend
ports:
- "3001:80"
depends_on:
- api_gateway
restart: unless-stopped
api_gateway:
container_name: api_gateway
build:
context: ./api_gateway
ports:
- "8000:8000"
depends_on:
- auth_service
- quest_catalog_service
- quest_processing_service
restart: unless-stopped
auth_service:
container_name: auth_service
build:
context: ./auth_service
ports:
- "8001:8001"
volumes:
- auth_data:/app
restart: unless-stopped
quest_catalog_service:
container_name: quest_catalog_service
build:
context: ./quest_catalog_service
ports:
- "8002:8002"
volumes:
- quest_catalog_data:/app
restart: unless-stopped
quest_processing_service:
container_name: quest_processing_service
build:
context: ./quest_processing_service
ports:
- "8003:8003"
volumes:
- quest_processing_data:/app
restart: unless-stopped
volumes:
auth_data:
quest_catalog_data:
quest_processing_data: