-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
104 lines (96 loc) · 2.29 KB
/
docker-compose.yml
File metadata and controls
104 lines (96 loc) · 2.29 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
version: '3.4'
services:
inventoryservice:
image: ${DOCKER_REGISTRY-}inventoryservice
build:
context: .
dockerfile: Microservices/InventoryService/Dockerfile
#container_name: InventoryService
environment:
- RABBITMQ_HOST
- RABBITMQ_DEFAULT_USER
- RABBITMQ_DEFAULT_PASS
depends_on:
- fluentd
- rabbitmq
logging:
driver: "fluentd"
options:
fluentd-address: localhost:24224
shippingservice:
image: ${DOCKER_REGISTRY-}shippingservice
#container_name: ShippingService
build:
context: .
dockerfile: Microservices/ShippingService/Dockerfile
environment:
- RABBITMQ_HOST
- RABBITMQ_DEFAULT_USER
- RABBITMQ_DEFAULT_PASS
depends_on:
- fluentd
- rabbitmq
logging:
driver: "fluentd"
options:
fluentd-address: localhost:24224
bankservice:
image: ${DOCKER_REGISTRY-}bankservice
#container_name: BankService
build:
context: .
dockerfile: Microservices/BankService/Dockerfile
environment:
- RABBITMQ_HOST
- RABBITMQ_DEFAULT_USER
- RABBITMQ_DEFAULT_PASS
depends_on:
- fluentd
- rabbitmq
logging:
driver: "fluentd"
options:
fluentd-address: localhost:24224
logprocessor:
image: ${DOCKER_REGISTRY-}logprocessor
#container_name: LogProcessor
build:
context: .
dockerfile: LogProcessor/LogProcessor/Dockerfile
depends_on:
- postgres
ports:
- "5000:80"
#- "44398:443"
buyergateway.server:
image: ${DOCKER_REGISTRY-}buyergatewayserver
#container_name: BuyerGateway
build:
context: .
dockerfile: Gateway/BuyerGateway/Server/Dockerfile
environment:
- RABBITMQ_HOST
- RABBITMQ_DEFAULT_USER
- RABBITMQ_DEFAULT_PASS
depends_on:
- fluentd
- rabbitmq
logging:
driver: "fluentd"
options:
fluentd-address: localhost:24224
ui.server:
image: ${DOCKER_REGISTRY-}uiserver
build:
context: .
dockerfile: LogProcessor/UI/Server/Dockerfile
ports:
- "5002:80"
depends_on:
- logprocessor
#environment:
# - RemoteLogprocessorUrl=http://logprocessor
networks:
default:
external:
name: thesis_network