-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
69 lines (52 loc) · 1.57 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
version: '3.4'
services:
usermanagementservice.api:
container_name: c_usermanagement
image: ${DOCKER_REGISTRY-}usermanagementserviceapi
build:
context: .
dockerfile: src/Services/UserManagementService/Dockerfile
groupmanagementservice.api:
container_name: c_groupmanagement
image: ${DOCKER_REGISTRY-}groupmanagementserviceapi
build:
context: .
dockerfile: src/Services/GroupManagementService/Dockerfile
todomanagementservice.api:
container_name: c_todomanagement
image: ${DOCKER_REGISTRY-}todomanagementserviceapi
build:
context: .
dockerfile: src/Services/ToDoManagementService/Dockerfile
apicompositionservice.api:
container_name: c_apicomposition
image: ${DOCKER_REGISTRY-}apicompositionserviceapi
build:
context: .
dockerfile: src/Services/ApiCompositionService/Dockerfile
web.apigateway:
container_name: c_apigateway
image: ${DOCKER_REGISTRY-}webapigateway
build:
context: .
dockerfile: src/ApiGateways/Web.ApiGateway/Dockerfile
notificationservice:
container_name: c_notificationservice
image: ${DOCKER_REGISTRY-}notificationservice
build:
context: .
dockerfile: src/Services/NotificationService/Dockerfile
s_redis:
container_name: c_redis
image: redis
s_redisinsight:
image: redislabs/redisinsight:latest
s_postgresql:
container_name: c_postgres
image: postgres
s_consul:
container_name: c_consul
image: consul
s_rabbitmq:
container_name: c_rabbitmq
image: rabbitmq:3-management