-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
75 lines (68 loc) · 1.38 KB
/
Copy pathdocker-compose.yml
File metadata and controls
75 lines (68 loc) · 1.38 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
services:
gateway:
build: ./frontend-gateway
container_name: hostly-gateway
ports:
- "60000:8080"
environment:
- BETTER_AUTH_SECRET=HOSTLY_SUPER_SECRET_KEY_2024
- PORT=8080
- BASE_URL=http://localhost:60000
networks:
- hostly-net
p2p-node-1:
build: ./mod4-p2p-share
container_name: p2p-node-1
hostname: p2p-node-1
environment:
- HOSTNAME=p2p-node-1
ports:
- "60001:8080"
networks:
- hostly-net
p2p-node-2:
build: ./mod4-p2p-share
container_name: p2p-node-2
hostname: p2p-node-2
environment:
- HOSTNAME=p2p-node-2
ports:
- "60002:8080"
networks:
- hostly-net
notices:
build: ./mod3-notice-board
container_name: notices-service
ports:
- "60003:4020"
environment:
- PORT=4020
networks:
- hostly-net
complaints:
build: ./mod1-complaints
container_name: complaints-service
ports:
- "60004:3000"
environment:
- PORT=3000
networks:
- hostly-net
mess-feedback:
build: ./mod5-mess-feedback
container_name: mess-service
ports:
- "60005:5000"
networks:
- hostly-net
shm_size: '64mb'
room-info:
build: ./mod2-room-info
container_name: room-service
ports:
- "60006:9000"
networks:
- hostly-net
networks:
hostly-net:
driver: bridge