-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
82 lines (74 loc) · 1.54 KB
/
docker-compose.yml
File metadata and controls
82 lines (74 loc) · 1.54 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
services:
# DS Registry API
ds-registry:
build:
context: ./services/ds-registry
dockerfile: Dockerfile
restart: unless-stopped
environment:
NODE_ENV: production
PORT: 3008
ports:
- "3008:3008"
# Admin Panel for DS Registry
admin:
build:
context: ./apps/admin
dockerfile: Dockerfile
restart: unless-stopped
ports:
- "3004:5173"
depends_on:
- ds-registry
# Client Application
client:
build:
context: ./apps/client
dockerfile: Dockerfile
restart: unless-stopped
ports:
- "3002:4173"
depends_on:
- ds-registry
# Generator web library
generator:
build:
context: ./services/ds-generator
dockerfile: Dockerfile
restart: unless-stopped
environment:
NODE_ENV: development
ports:
- "3005:3005"
depends_on:
- ds-registry
# Publisher service
publisher:
build:
context: ./services/publisher
dockerfile: Dockerfile
restart: unless-stopped
environment:
NODE_ENV: development
PORT: 3007
ports:
- "3007:3007"
# Documentation Generator Service
docs-generator:
build:
context: ./services/ds-documentation-generator
dockerfile: Dockerfile
restart: unless-stopped
environment:
NODE_ENV: development
PORT: 3006
ports:
- "3006:3006"
depends_on:
- ds-registry
volumes:
- docs_output:/home/node/app/output
command: npm run start:dev
volumes:
docs_output:
driver: local