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-10-07 14:15:03 -07:00
|
|
|
depends_on:
|
|
|
|
- ordering.data
|
|
|
|
|
|
|
|
ordering.data:
|
2016-11-24 14:58:37 +01:00
|
|
|
image: microsoft/mssql-server-linux
|
|
|
|
environment:
|
|
|
|
- ACCEPT_EULA=Y
|
|
|
|
- SA_PASSWORD=Pass@word
|
2016-10-07 14:15:03 -07:00
|
|
|
ports:
|
|
|
|
- "1433:1433"
|