-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
45 lines (41 loc) · 1.03 KB
/
Copy pathdocker-compose.dev.yml
File metadata and controls
45 lines (41 loc) · 1.03 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
services:
# ---------------------------------------------------------------------------
# Dev overrides: volume mounts, debug ports, relaxed security
# ---------------------------------------------------------------------------
mfe:
environment:
- COOKIE_SECURE=false
- NODE_ENV=development
command: sh -lc "cd /app && npm ci && npm run dev --workspace=@gofin/shell"
volumes:
- ./frontend:/app
- /app/node_modules
api-gateway:
volumes:
- ./services/gateway:/app
ports:
- "40000:40000"
environment:
- ENVIRONMENT=development
auth-service:
volumes:
- ./services/auth:/app
ports:
- "40001:40001"
environment:
- BCRYPT_COST=4
- ENVIRONMENT=development
expense-service:
volumes:
- ./services/expense:/app
ports:
- "40002:40002"
environment:
- ENVIRONMENT=development
finance-service:
volumes:
- ./services/finance:/app
ports:
- "40003:40003"
environment:
- ENVIRONMENT=development