-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
50 lines (35 loc) · 926 Bytes
/
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.4'
services:
catalogdb:
image: mongo
cartdb:
image: redis
rabbitmq:
image: rabbitmq:3-management-alpine
orderdb:
image: mcr.microsoft.com/mssql/server
catalog.api:
image: ${DOCKER_REGISTRY-}catalogapi
build:
context: .
dockerfile: src/Catalog/Catalog.API/Dockerfile
cart.api:
image: ${DOCKER_REGISTRY-}cartapi
build:
context: .
dockerfile: src/Cart/Cart.API/Dockerfile
ordering.api:
image: ${DOCKER_REGISTRY-}orderingapi
build:
context: .
dockerfile: src/Ordering/Ordering.API/Dockerfile
ocelotgateway:
image: ${DOCKER_REGISTRY-}ocelotgateway
build:
context: .
dockerfile: src/ApiGateWays/OcelotGateWay/Dockerfile
traditionalwebclient:
image: ${DOCKER_REGISTRY-}traditionalwebclient
build:
context: .
dockerfile: src/WebClient/TraditionalWebClient/Dockerfile