-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
34 lines (29 loc) · 1.01 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
version: '3.4'
services:
onlinecomputershop.api:
container_name: onlinecomputershop.api
image: ${DOCKER_REGISTRY-}onlinecomputershopapi
build:
context: .
dockerfile: backend/OnlineComputerShop.Api/Dockerfile
onlinecomputershop.identityprovider:
container_name: onlinecomputershop.identityprovider
image: ${DOCKER_REGISTRY-}onlinecomputershopidentityprovider
build:
context: .
dockerfile: backend/OnlineComputerShop.IdentityProvider/Dockerfile
onlinecomputershop.mssql:
container_name: onlinecomputershop.mssql
image: mcr.microsoft.com/mssql/server:2017-latest
onlinecomputershop.webshop:
container_name: onlinecomputershop.webshop
image: ${DOCKER_REGISTRY-}onlinecomptershopwebshop
build:
context: ./frontend/webshop
dockerfile: Dockerfile
onlinecomputershop.admin:
container_name: onlinecomputershop.admin
image: ${DOCKER_REGISTRY-}onlinecomputershopadmin
build:
context: ./frontend/admin
dockerfile: Dockerfile