eShopOnContainers/docker-compose.yml

84 lines
1.6 KiB
YAML
Raw Normal View History

version: '2'
services:
basket.api:
image: eshop/basket.api
2017-05-19 19:32:42 +02:00
build:
context: ./src/Services/Basket/Basket.API
dockerfile: Dockerfile
depends_on:
- basket.data
- identity.api
- rabbitmq
catalog.api:
image: eshop/catalog.api
2017-05-19 19:32:42 +02:00
build:
context: ./src/Services/Catalog/Catalog.API
dockerfile: Dockerfile
depends_on:
- sql.data
- rabbitmq
identity.api:
image: eshop/identity.api
2017-05-19 19:32:42 +02:00
build:
context: ./src/Services/Identity/Identity.API
dockerfile: Dockerfile
depends_on:
- sql.data
ordering.api:
image: eshop/ordering.api
2017-05-19 19:32:42 +02:00
build:
context: ./src/Services/Ordering/Ordering.API
dockerfile: Dockerfile
depends_on:
- sql.data
webspa:
image: eshop/webspa
2017-05-19 19:32:42 +02:00
build:
context: ./src/Web/WebSPA
dockerfile: Dockerfile
2017-02-17 13:26:42 +01:00
depends_on:
- identity.api
- basket.api
webmvc:
image: eshop/webmvc
2017-05-19 19:32:42 +02:00
build:
context: ./src/Web/WebMVC
dockerfile: Dockerfile
depends_on:
- catalog.api
- ordering.api
- identity.api
- basket.api
sql.data:
image: microsoft/mssql-server-linux
basket.data:
image: redis
ports:
- "6379:6379"
2017-03-08 15:44:53 +01:00
rabbitmq:
image: rabbitmq
ports:
- "5672:5672"
2017-03-23 19:10:55 +01:00
webstatus:
image: eshop/webstatus
2017-05-19 19:32:42 +02:00
build:
context: ./src/Web/WebStatus
dockerfile: Dockerfile
2017-05-30 15:01:58 +02:00
locations.api:
image: locations.api
build:
context: ./src/Services/Location/Locations.API
dockerfile: Dockerfile
depends_on:
- sql.data