35 lines
584 B
YAML
Raw Normal View History

2016-10-17 20:10:18 -07:00
version: '2'
services:
basket.api:
image: user/basket.api${TAG}
environment:
- ConnectionString=basket.data
build:
context: .
dockerfile: Dockerfile
ports:
- "32783:80"
depends_on:
- basket.data
2016-10-17 20:10:18 -07:00
basket.data:
image: redis
2016-11-24 15:31:33 +01:00
identity.service:
image: eshop/identity
expose:
- "80"
ports:
- "5105:80"
depends_on:
- identity.data
identity.data:
image: microsoft/mssql-server-linux
environment:
- SA_PASSWORD=Pass@word
- ACCEPT_EULA=Y
ports:
- "5433:1433"