-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdocker-compose.yml
49 lines (48 loc) · 1.37 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
version: "3.8"
services:
authdb:
image: mcr.microsoft.com/mssql/server:2019-latest
guidedb:
image: postgres
reportdb:
image: postgres
rabbitmq:
image: rabbitmq:3.8.14-management
rabbitmqmass:
image: masstransit/rabbitmq
guide-api:
image: guide_image
build:
context: .
dockerfile: src/Microservices/Csharp/Guide/TelephoneDirectory.Guide/Dockerfile
report-api:
image: report_image
build:
context: .
dockerfile: src/Microservices/Csharp/Report/TelephoneDirectory.Report/Dockerfile
auth-api:
image: auth_image
build:
context: .
dockerfile: src/Microservices/Csharp/Auth/TelephoneDirectory.Auth/Dockerfile
gateway-api:
image: gateway_api_image
build:
context: .
dockerfile: src/Global/Gateway.WebApi/Dockerfile
pgAdmin4:
image: dpage/pgadmin4
examplego-api:
image: examplego_api_image
build:
context: src/Microservices/Golang/Example
otel-collector:
image: otel/opentelemetry-collector:latest
jaeger:
container_name: jaeger
image: jaegertracing/all-in-one
prometheus:
container_name: prometheus
image: prom/prometheus:latest
volumes:
authdb_volume: