-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
83 lines (66 loc) · 1.8 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
version: '3.4'
services:
eventbus:
image: rabbitmq:management
rediscache:
image: redis:latest
sqlserver:
image: mcr.microsoft.com/mssql/server:2019-latest
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.9.2
kibana:
image: docker.elastic.co/kibana/kibana:7.9.2
posts.api:
image: ${DOCKER_REGISTRY-}postsapi
build:
context: .
dockerfile: Services/Posts/Posts.API/Dockerfile
comments.api:
image: ${DOCKER_REGISTRY-}commentsapi
build:
context: .
dockerfile: Services/Comments/Comments.API/Dockerfile
accounts.api:
image: ${DOCKER_REGISTRY-}accountsapi
build:
context: .
dockerfile: Services/Accounts/Accounts.API/Dockerfile
files.api:
image: ${DOCKER_REGISTRY-}filesapi
build:
context: .
dockerfile: Services/Files/Dockerfile
intelligence.api:
image: ${DOCKER_REGISTRY-}intelligenceapi
build:
context: .
dockerfile: Services/Intelligence/Intelligence.API/Dockerfile
recommender.api:
image: ${DOCKER_REGISTRY-}recommenderapi
build:
context: .
dockerfile: Services/Recommender/Dockerfile
aggregator:
image: ${DOCKER_REGISTRY-}aggregator
build:
context: .
dockerfile: Gateway/Aggregator/Dockerfile
apigateway:
image: ${DOCKER_REGISTRY-}apigateway
build:
context: .
dockerfile: Gateway/ApiGateway/Dockerfile
blogplatform.ui:
image: ${DOCKER_REGISTRY-}blogplatformui
build:
context: .
dockerfile: Presentation/BlogPlatform.UI/Dockerfile
identityserver:
image: ${DOCKER_REGISTRY-}identityserver
build:
context: .
dockerfile: Services/Identity/IdentityServer/Dockerfile
volumes:
sqlserver-data:
elasticsearch-data:
fileserver-data: