-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
executable file
·46 lines (41 loc) · 991 Bytes
/
docker-compose.yaml
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
services:
manager:
extends:
file: ./live-manager/docker-compose.yaml
service: manager
postgres:
extends:
file: ./live-manager/docker-compose.yaml
service: postgres
chat:
extends:
file: ./live-chat/docker-compose.yaml
service: chat
cassandra:
extends:
file: ./live-chat/docker-compose.yaml
service: cassandra
chat-cassandra-init:
extends:
file: ./live-chat/docker-compose.yaml
service: init-db
store:
extends:
file: ./live-store/docker-compose.yaml
service: store
store-postgres:
extends:
file: ./live-store/docker-compose.yaml
service: postgres
frontend-streaming:
extends:
file: ./frontend-streaming/docker-compose.yaml
service: streaming
frontend-manager:
extends:
file: ./frontend-manager/docker-compose.yaml
service: frontend-manager
networks:
live-shopping-network:
name: live-shopping-network
driver: bridge