-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
52 lines (39 loc) · 964 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
50
version: '3.4'
services:
catalogdb:
image: mongo:latest
basketdb:
image: redis:alpine
discountdb:
image: postgres:latest
orderdb:
image: mcr.microsoft.com/mssql/server:2022-latest
pgadmin:
image: dpage/pgadmin4:latest
portainer:
image: portainer/portainer-ce:latest
catalog.api:
image: ${DOCKER_REGISTRY-}catalogapi
build:
context: .
dockerfile: Services/Catalog/Catalog.Api/Dockerfile
basket.api:
image: ${DOCKER_REGISTRY-}basketapi
build:
context: .
dockerfile: Services/Basket/Basket.api/Dockerfile
discount.api:
image: ${DOCKER_REGISTRY-}discountapi
build:
context: .
dockerfile: Services/Discount/Discount.Api/Dockerfile
discount.grpc:
image: ${DOCKER_REGISTRY-}discountgrpc
build:
context: .
dockerfile: Services/Discount/Discount.Grpc/Dockerfile
volumes:
mongo_data:
portainer_data:
postgres_data:
pgadmin_data: