forked from alugili/ModernArchitectureShop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
34 lines (29 loc) · 902 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
#version: "3.7"
#networks:
# frontend:
backend:
services:
modernarchitectureshop-identityserver:
image: modernarchitectureshop-identityserver:dev
build:
context: .
dockerfile: ./src/Identity/Dockerfile
ports:
- "443:50000"
modernarchitectureshop-basket:
image: modernarchitectureshop-basketapi:dev
build:
context: .
dockerfile: ./src/Basket/ModernArchitectureShop.BasketApi/Dockerfile
modernarchitectureshop-store:
image: modernarchitectureshop-storeapi:dev
build:
context: .
dockerfile: ./src/Store/ModernArchitectureShop.StoreApi/Dockerfile
modernarchitectureshop-blazorui:
image: modernarchitectureshop-blazorui:dev
build:
context: .
dockerfile: ./src/UI/Dockerfile
ports:
- "5010:5010"