-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
executable file
·76 lines (53 loc) · 1.56 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
version: '3.4'
services:
recall-zipkin:
image: openzipkin/zipkin-slim:latest
recall-seq:
image: datalust/seq:latest
extra_hosts:
- "host.docker.internal:host-gateway"
recall-sqldata:
image: mcr.microsoft.com/mssql/server:2019-latest
extra_hosts:
- "host.docker.internal:host-gateway"
recall-rabbitmq:
image: rabbitmq:3-management-alpine
recall-envoygateway:
image: envoyproxy/envoy:v1.11.1
extra_hosts:
- "host.docker.internal:host-gateway"
recall-envoygateway-dapr:
image: "daprio/daprd:1.9.4"
network_mode: "service:recall-envoygateway"
depends_on:
- recall-envoygateway
recall-textitemapi:
image: recall-textitemapi
build:
context: .
dockerfile: Contrib/TextItem.Api/Dockerfile
recall-textitemapi-dapr:
image: "daprio/daprd:1.9.4"
network_mode: "service:recall-textitemapi"
depends_on:
- recall-textitemapi
recall-servicestatus:
image: recall-servicestatus
build:
context: .
dockerfile: Infrastructure/ServiceStatus/Dockerfile
recall-listapi:
image: recall-listapi
build:
context: .
dockerfile: Core/List/List.Api/Dockerfile
recall-listapi-dapr:
image: "daprio/daprd:1.9.4"
network_mode: "service:recall-listapi"
depends_on:
- recall-listapi
recall-identity.api:
image: recall-identityapi
build:
context: .
dockerfile: Infrastructure/Identity.Api/Dockerfile