eShopOnContainers/docker-compose.yml

147 lines
3.2 KiB
YAML
Raw Normal View History

version: '3.4'
2017-05-08 10:48:06 +02:00
services:
2017-05-08 10:48:06 +02:00
basket.api:
image: eshop/basket.api:${TAG:-latest}
2017-05-19 19:32:42 +02:00
build:
context: .
dockerfile: src/Services/Basket/Basket.API/Dockerfile
depends_on:
- basket.data
- identity.api
- rabbitmq
catalog.api:
image: eshop/catalog.api:${TAG:-latest}
2017-05-19 19:32:42 +02:00
build:
context: .
dockerfile: src/Services/Catalog/Catalog.API/Dockerfile
depends_on:
- sql.data
- rabbitmq
identity.api:
image: eshop/identity.api:${TAG:-latest}
2017-05-19 19:32:42 +02:00
build:
context: .
dockerfile: src/Services/Identity/Identity.API/Dockerfile
depends_on:
- sql.data
ordering.api:
image: eshop/ordering.api:${TAG:-latest}
2017-05-19 19:32:42 +02:00
build:
context: .
dockerfile: src/Services/Ordering/Ordering.API/Dockerfile
depends_on:
- sql.data
2017-05-08 10:48:06 +02:00
- rabbitmq
2017-06-01 10:10:20 +02:00
marketing.api:
image: eshop/marketing.api:${TAG:-latest}
2017-06-01 10:10:20 +02:00
build:
context: .
dockerfile: src/Services/Marketing/Marketing.API/Dockerfile
2017-06-01 10:10:20 +02:00
depends_on:
- sql.data
2017-06-13 17:31:37 +02:00
- nosql.data
2017-06-01 10:10:20 +02:00
- identity.api
2017-06-13 17:31:37 +02:00
- rabbitmq
2017-06-01 10:10:20 +02:00
webspa:
image: eshop/webspa:${TAG:-latest}
2017-05-19 19:32:42 +02:00
build:
context: .
dockerfile: src/Web/WebSPA/Dockerfile
2017-02-17 13:26:42 +01:00
depends_on:
- catalog.api
- ordering.api
2017-02-17 13:26:42 +01:00
- identity.api
- basket.api
- marketing.api
webmvc:
image: eshop/webmvc:${TAG:-latest}
2017-05-19 19:32:42 +02:00
build:
context: .
dockerfile: src/Web/WebMVC/Dockerfile
depends_on:
- catalog.api
- ordering.api
- identity.api
- basket.api
2017-06-15 19:22:47 +02:00
- marketing.api
2017-03-23 19:10:55 +01:00
webstatus:
image: eshop/webstatus:${TAG:-latest}
2017-05-19 19:32:42 +02:00
build:
context: .
dockerfile: src/Web/WebStatus/Dockerfile
2017-04-28 15:04:38 +02:00
payment.api:
image: eshop/payment.api:${TAG:-latest}
2017-04-28 15:04:38 +02:00
build:
context: .
dockerfile: src/Services/Payment/Payment.API/Dockerfile
depends_on:
2017-06-12 13:52:23 +02:00
- rabbitmq
2017-05-30 15:01:58 +02:00
locations.api:
image: eshop/locations.api:${TAG:-latest}
2017-05-30 15:01:58 +02:00
build:
context: .
dockerfile: src/Services/Location/Locations.API/Dockerfile
2017-05-30 15:01:58 +02:00
depends_on:
2017-06-12 13:52:23 +02:00
- nosql.data
2017-06-13 17:31:37 +02:00
- rabbitmq
sql.data:
image: microsoft/mssql-server-linux:2017-latest
nosql.data:
image: mongo
basket.data:
image: redis:alpine
rabbitmq:
image: rabbitmq:3-management-alpine
2018-01-11 11:20:38 +01:00
mobileshoppingapigw:
2018-03-14 18:25:26 +01:00
image: eshop/ocelotapigw-ms:${TAG:-latest}
build:
context: .
dockerfile: src/ApiGateways/ApiGw-Base/Dockerfile
mobilemarketingapigw:
2018-03-14 18:25:26 +01:00
image: eshop/ocelotapigw-mm:${TAG:-latest}
build:
context: .
dockerfile: src/ApiGateways/ApiGw-Base/Dockerfile2
2018-02-15 18:13:14 +01:00
webshoppingapigw:
2018-03-14 18:25:26 +01:00
image: eshop/ocelotapigw-ws:${TAG:-latest}
2018-02-15 18:13:14 +01:00
build:
context: .
dockerfile: src/ApiGateways/ApiGw-Base/Dockerfile3
2018-02-15 18:13:14 +01:00
webmarketingapigw:
2018-03-14 18:25:26 +01:00
image: eshop/ocelotapigw-wm:${TAG:-latest}
build:
context: .
dockerfile: src/ApiGateways/ApiGw-Base/Dockerfile
2018-01-26 16:09:36 +00:00
2018-02-15 17:30:39 +01:00
mobileshoppingagg:
2018-03-14 18:25:26 +01:00
image: eshop/mobileshoppingagg:${TAG:-latest}
2018-01-26 16:09:36 +00:00
build:
context: .
dockerfile: src/ApiGateways/Mobile.Bff.Shopping/aggregator/Dockerfile
2018-01-26 16:09:36 +00:00
2018-02-27 14:32:25 +01:00
webshoppingagg:
2018-03-14 18:25:26 +01:00
image: eshop/webshoppingagg:${TAG:-latest}
2018-02-27 14:32:25 +01:00
build:
context: .
dockerfile: src/ApiGateways/Web.Bff.Shopping/aggregator/Dockerfile
2018-02-27 14:32:25 +01:00