21 lines
495 B
YAML
Raw Normal View History

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