2016-09-14 00:44:13 -07:00
|
|
|
version: '2'
|
|
|
|
|
|
|
|
services:
|
2016-09-14 21:37:48 -07:00
|
|
|
ordering.api:
|
2016-10-06 20:09:44 -07:00
|
|
|
image: eshop/ordering.api${TAG}
|
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: Dockerfile
|
2016-09-14 21:37:48 -07:00
|
|
|
environment:
|
2016-10-07 14:15:03 -07:00
|
|
|
- ConnectionString=Server=ordering.data;Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id=sa;Password=Pass@word
|
2016-09-14 00:44:13 -07:00
|
|
|
ports:
|
2016-09-14 21:37:48 -07:00
|
|
|
- "81:80"
|
2016-09-14 11:39:29 -07:00
|
|
|
extra_hosts:
|
2016-10-06 20:09:44 -07:00
|
|
|
- "CESARDLBOOKVHD:10.0.75.1"
|
2016-10-07 14:15:03 -07:00
|
|
|
depends_on:
|
|
|
|
- ordering.data
|
|
|
|
|
|
|
|
ordering.data:
|
|
|
|
image: eshop/ordering.data.sqlserver.linux
|
|
|
|
ports:
|
|
|
|
- "1433:1433"
|