This repository was archived by the owner on Jun 5, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
85 lines (81 loc) · 2.02 KB
/
Copy pathdocker-compose.yml
File metadata and controls
85 lines (81 loc) · 2.02 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
services:
api-gateway:
build:
context: ./services/api-gateway
dockerfile: Dockerfile
environment:
- TZ=Etc/GMT+5
ports:
- '3000:80'
depends_on:
- user-service
- company-service
- forms-service
develop:
watch:
- action: sync
path: ./services/api-gateway
target: /app
ignore:
- node_modules/
- action: rebuild
path: ./services/api-gateway/Dockerfile
user-service:
build:
context: ./services/user-service
dockerfile: Dockerfile
ports:
- '4001:4001'
env_file:
- ./services/user-service/.env
develop:
watch:
- action: sync
path: ./services/user-service
target: /app
ignore:
- node_modules/
- action: rebuild
path: ./services/user-service/Dockerfile
company-service:
build:
context: ./services/company-service
dockerfile: Dockerfile
ports:
- '4002:4002'
env_file:
- ./services/company-service/.env
develop:
watch:
- action: sync
path: ./services/company-service
target: /app
ignore:
- node_modules/
- action: rebuild
path: ./services/company-service/Dockerfile
forms-service:
build:
context: ./services/forms-service
dockerfile: Dockerfile
ports:
- '4003:4003'
env_file:
- ./services/forms-service/.env
develop:
watch:
- action: sync
path: ./services/forms-service
target: /app
ignore:
- node_modules/
- action: rebuild
path: ./services/forms-service/Dockerfile
front-end:
build:
context: ./services/front-end
dockerfile: Dockerfile
ports:
- '5173:5173'
depends_on:
- api-gateway