-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdocker-compose.yml
44 lines (37 loc) · 1.1 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
version: '3.4'
services:
northwind.product.v1:
image: parameshg/northwind.product:v1
build:
context: .
dockerfile: Northwind.Services.Product/Dockerfile
northwind.order.v1:
image: parameshg/northwind.order:v1
build:
context: .
dockerfile: Northwind.Services.Order/Dockerfile
northwind.address.v1:
image: parameshg/northwind.address:v1
build:
context: .
dockerfile: Northwind.Services.Address/Dockerfile
northwind.address.v2:
image: parameshg/northwind.address:v2
build:
context: .
dockerfile: Northwind.Services.Address.v2/Dockerfile
northwind.payment.v1:
image: parameshg/northwind.payment:v1
build:
context: .
dockerfile: Northwind.Services.Payment/Dockerfile
northwind.payment.v2:
image: parameshg/northwind.payment:v2
build:
context: .
dockerfile: Northwind.Services.Payment.v2/Dockerfile
northwind.address.v3:
image: parameshg/northwind.address:v3
build:
context: .
dockerfile: Northwind.Services.Address.v3/Dockerfile