Skip to content

Commit ae6bdfe

Browse files
committed
Add History to docker-compose
1 parent 684f254 commit ae6bdfe

File tree

1 file changed

+15
-8
lines changed

1 file changed

+15
-8
lines changed

docker-compose.yml

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,21 @@ services:
1818
ports:
1919
- "3002:3002"
2020

21+
collab-service:
22+
build:
23+
context: ./Backend/CollabService
24+
dockerfile: Dockerfile
25+
ports:
26+
- "3004:3004" # change the first port number xxxx:3004 to suit your needs
27+
- "1234:1234"
28+
29+
history-service:
30+
build:
31+
context: ./Backend/HistoryService
32+
dockerfile: Dockerfile
33+
ports:
34+
- "3005:3005" # change the first port number xxxx:3004 to suit your needs
35+
2136
matching-service:
2237
build:
2338
context: ./Backend/MatchingService
@@ -29,14 +44,6 @@ services:
2944
depends_on:
3045
question-service:
3146
condition: service_healthy
32-
33-
collab-service:
34-
build:
35-
context: ./Backend/CollabService
36-
dockerfile: Dockerfile
37-
ports:
38-
- "3004:3004" # change the first port number xxxx:3004 to suit your needs
39-
- "1234:1234"
4047

4148
frontend:
4249
build:

0 commit comments

Comments
 (0)