-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
105 lines (81 loc) · 2.09 KB
/
docker-compose.yml
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
103
104
105
version: '3.4'
services:
catalogdb:
image: mongo
basketdb:
image: redis:alpine
discountdb:
image: postgres
pgadmin:
image: dpage/pgadmin4
orderdb:
image: mcr.microsoft.com/mssql/server:2017-latest
rabbitmq:
image: rabbitmq:3-management-alpine
catalog.api:
image: ${DOCKER_REGISTRY-}catalogapi
build:
context: .
dockerfile: Services/Catalog/Catalog.API/Dockerfile
basket.api:
image: ${DOCKER_REGISTRY-}basketapi
build:
context: .
dockerfile: Services/Basket/Basket.API/Dockerfile
discount.api:
image: ${DOCKER_REGISTRY-}discountapi
build:
context: .
dockerfile: Services/Discount/Discount.API/Dockerfile
ordering.api:
image: ${DOCKER_REGISTRY-}orderingapi
build:
context: .
dockerfile: Services/Ordering/Ordering.API/Dockerfile
web.shopping.httpaggregator:
image: ${DOCKER_REGISTRY-}webshoppinghttpaggregator
build:
context: .
dockerfile: ApiGateways/Web.Bff.Shopping/aggregator/Dockerfile
webmvc:
image: ${DOCKER_REGISTRY-}webmvc
build:
context: .
dockerfile: WebApps/WebMVC/Dockerfile
webstatus:
image: ${DOCKER_REGISTRY-}webstatus
build:
context: .
dockerfile: WebApps/WebStatus/Dockerfile
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:${STACK_VERSION}
kibana:
image: docker.elastic.co/kibana/kibana:${STACK_VERSION}
metricbeat:
image: docker.elastic.co/beats/metricbeat:${STACK_VERSION}
filebeat:
image: docker.elastic.co/beats/filebeat:${STACK_VERSION}
logstash:
image: docker.elastic.co/logstash/logstash:${STACK_VERSION}
grafana:
image: grafana/grafana:10.2.3
prometheus:
image: prom/prometheus:v2.48.1
loki:
image: grafana/loki:2.9.3
otel-collector:
image: otel/opentelemetry-collector-contrib:0.91.0
jaeger:
image: jaegertracing/all-in-one:1.52
volumes:
mongo_data:
postgres_data:
pgadmin_data:
rabbitmq_data:
elasticsearch-data:
grafana-data:
certs:
kibana-data:
metricbeat-data:
filebeat-data:
logstash-data: