2018-01-04 11:01:45 -08:00
|
|
|
version: '3.4'
|
2017-05-08 10:48:06 +02:00
|
|
|
|
2016-09-14 08:35:34 -07:00
|
|
|
services:
|
2019-03-19 15:57:47 +01:00
|
|
|
|
2019-01-31 10:43:32 +00:00
|
|
|
seq:
|
|
|
|
image: datalust/seq:latest
|
|
|
|
|
2018-05-22 15:33:21 +02:00
|
|
|
sql.data:
|
|
|
|
image: microsoft/mssql-server-linux:2017-latest
|
|
|
|
|
|
|
|
nosql.data:
|
|
|
|
image: mongo
|
|
|
|
|
|
|
|
basket.data:
|
|
|
|
image: redis:alpine
|
2018-07-02 13:37:49 +01:00
|
|
|
|
2018-05-22 15:33:21 +02:00
|
|
|
rabbitmq:
|
|
|
|
image: rabbitmq:3-management-alpine
|
|
|
|
|
|
|
|
identity.api:
|
2019-03-29 12:26:54 +01:00
|
|
|
image: ${REGISTRY:-eshop}/identity.api:${PLATFORM:-linux}-${TAG:-latest}
|
2018-05-22 15:33:21 +02:00
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: src/Services/Identity/Identity.API/Dockerfile
|
|
|
|
depends_on:
|
|
|
|
- sql.data
|
2017-05-08 10:48:06 +02:00
|
|
|
|
2016-12-07 13:57:31 +01:00
|
|
|
basket.api:
|
2019-03-29 12:26:54 +01:00
|
|
|
image: ${REGISTRY:-eshop}/basket.api:${PLATFORM:-linux}-${TAG:-latest}
|
2017-05-19 19:32:42 +02:00
|
|
|
build:
|
2017-11-27 13:48:31 -08:00
|
|
|
context: .
|
2018-01-04 11:01:45 -08:00
|
|
|
dockerfile: src/Services/Basket/Basket.API/Dockerfile
|
2016-12-07 13:57:31 +01:00
|
|
|
depends_on:
|
|
|
|
- basket.data
|
2017-02-14 18:11:51 +01:00
|
|
|
- identity.api
|
2017-07-12 12:10:10 +02:00
|
|
|
- rabbitmq
|
2016-12-07 13:57:31 +01:00
|
|
|
|
2016-09-14 08:35:34 -07:00
|
|
|
catalog.api:
|
2019-03-29 12:26:54 +01:00
|
|
|
image: ${REGISTRY:-eshop}/catalog.api:${PLATFORM:-linux}-${TAG:-latest}
|
2017-05-19 19:32:42 +02:00
|
|
|
build:
|
2017-11-27 13:48:31 -08:00
|
|
|
context: .
|
2018-01-04 11:01:45 -08:00
|
|
|
dockerfile: src/Services/Catalog/Catalog.API/Dockerfile
|
2016-09-14 08:35:34 -07:00
|
|
|
depends_on:
|
2016-12-17 14:41:16 +01:00
|
|
|
- sql.data
|
2017-03-09 15:56:34 +01:00
|
|
|
- rabbitmq
|
2016-09-14 21:37:48 -07:00
|
|
|
|
2017-02-14 18:11:51 +01:00
|
|
|
ordering.api:
|
2019-03-29 12:26:54 +01:00
|
|
|
image: ${REGISTRY:-eshop}/ordering.api:${PLATFORM:-linux}-${TAG:-latest}
|
2017-05-19 19:32:42 +02:00
|
|
|
build:
|
2017-11-27 13:48:31 -08:00
|
|
|
context: .
|
2018-01-04 11:01:45 -08:00
|
|
|
dockerfile: src/Services/Ordering/Ordering.API/Dockerfile
|
2016-12-15 14:35:35 -08:00
|
|
|
depends_on:
|
2016-12-17 14:41:16 +01:00
|
|
|
- sql.data
|
2017-05-08 10:48:06 +02:00
|
|
|
- rabbitmq
|
2016-12-15 14:35:35 -08:00
|
|
|
|
2018-05-09 20:10:54 +01:00
|
|
|
ordering.backgroundtasks:
|
2019-03-29 12:26:54 +01:00
|
|
|
image: ${REGISTRY:-eshop}/ordering.backgroundtasks:${PLATFORM:-linux}-${TAG:-latest}
|
2018-05-09 20:10:54 +01:00
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: src/Services/Ordering/Ordering.BackgroundTasks/Dockerfile
|
|
|
|
depends_on:
|
|
|
|
- sql.data
|
|
|
|
- rabbitmq
|
|
|
|
|
2017-06-01 10:10:20 +02:00
|
|
|
marketing.api:
|
2019-03-29 12:26:54 +01:00
|
|
|
image: ${REGISTRY:-eshop}/marketing.api:${PLATFORM:-linux}-${TAG:-latest}
|
2017-06-01 10:10:20 +02:00
|
|
|
build:
|
2017-11-27 13:48:31 -08:00
|
|
|
context: .
|
2018-01-04 11:01:45 -08:00
|
|
|
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
|
|
|
|
2017-04-28 15:04:38 +02:00
|
|
|
payment.api:
|
2019-03-29 12:26:54 +01:00
|
|
|
image: ${REGISTRY:-eshop}/payment.api:${PLATFORM:-linux}-${TAG:-latest}
|
2017-04-28 15:04:38 +02:00
|
|
|
build:
|
2017-11-27 13:48:31 -08:00
|
|
|
context: .
|
2018-01-04 11:01:45 -08:00
|
|
|
dockerfile: src/Services/Payment/Payment.API/Dockerfile
|
2017-05-16 15:44:21 +02:00
|
|
|
depends_on:
|
2017-06-12 13:52:23 +02:00
|
|
|
- rabbitmq
|
2018-07-02 13:37:49 +01:00
|
|
|
|
2017-05-30 15:01:58 +02:00
|
|
|
locations.api:
|
2019-03-29 12:26:54 +01:00
|
|
|
image: ${REGISTRY:-eshop}/locations.api:${PLATFORM:-linux}-${TAG:-latest}
|
2017-05-30 15:01:58 +02:00
|
|
|
build:
|
2017-11-27 13:48:31 -08:00
|
|
|
context: .
|
2018-01-04 11:01:45 -08:00
|
|
|
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
|
2017-08-14 17:35:56 -07:00
|
|
|
|
2019-01-16 19:38:14 +01:00
|
|
|
webhooks.api:
|
2019-03-29 12:26:54 +01:00
|
|
|
image: ${REGISTRY:-eshop}/webhooks.api:${PLATFORM:-linux}-${TAG:-latest}
|
2019-01-16 19:38:14 +01:00
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: src/Services/Webhooks/Webhooks.API/Dockerfile
|
|
|
|
depends_on:
|
|
|
|
- sql.data
|
|
|
|
|
2018-02-28 11:30:25 +01:00
|
|
|
mobileshoppingapigw:
|
2019-03-29 12:26:54 +01:00
|
|
|
image: ${REGISTRY:-eshop}/ocelotapigw:${PLATFORM:-linux}-${TAG:-latest}
|
2018-02-28 11:30:25 +01:00
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: src/ApiGateways/ApiGw-Base/Dockerfile
|
2018-05-22 15:33:21 +02:00
|
|
|
depends_on:
|
|
|
|
- nosql.data
|
|
|
|
- sql.data
|
|
|
|
- identity.api
|
|
|
|
- rabbitmq
|
|
|
|
- ordering.api
|
|
|
|
- marketing.api
|
|
|
|
- catalog.api
|
|
|
|
- basket.api
|
2018-07-02 13:37:49 +01:00
|
|
|
|
2018-02-28 11:30:25 +01:00
|
|
|
mobilemarketingapigw:
|
2019-03-29 12:26:54 +01:00
|
|
|
image: ${REGISTRY:-eshop}/ocelotapigw:${PLATFORM:-linux}-${TAG:-latest}
|
2018-02-28 11:30:25 +01:00
|
|
|
build:
|
|
|
|
context: .
|
2018-04-02 14:18:20 -07:00
|
|
|
dockerfile: src/ApiGateways/ApiGw-Base/Dockerfile
|
2018-05-22 15:33:21 +02:00
|
|
|
depends_on:
|
|
|
|
- nosql.data
|
|
|
|
- sql.data
|
|
|
|
- identity.api
|
|
|
|
- rabbitmq
|
|
|
|
- ordering.api
|
|
|
|
- marketing.api
|
|
|
|
- catalog.api
|
|
|
|
- basket.api
|
2018-07-02 13:37:49 +01:00
|
|
|
|
2018-02-15 18:13:14 +01:00
|
|
|
webshoppingapigw:
|
2019-03-29 12:26:54 +01:00
|
|
|
image: ${REGISTRY:-eshop}/ocelotapigw:${PLATFORM:-linux}-${TAG:-latest}
|
2018-02-15 18:13:14 +01:00
|
|
|
build:
|
|
|
|
context: .
|
2018-04-02 14:18:20 -07:00
|
|
|
dockerfile: src/ApiGateways/ApiGw-Base/Dockerfile
|
2018-05-22 15:33:21 +02:00
|
|
|
depends_on:
|
|
|
|
- nosql.data
|
|
|
|
- sql.data
|
|
|
|
- identity.api
|
|
|
|
- rabbitmq
|
|
|
|
- ordering.api
|
|
|
|
- marketing.api
|
|
|
|
- catalog.api
|
|
|
|
- basket.api
|
2018-02-15 18:13:14 +01:00
|
|
|
|
2018-02-28 11:30:25 +01:00
|
|
|
webmarketingapigw:
|
2019-03-29 12:26:54 +01:00
|
|
|
image: ${REGISTRY:-eshop}/ocelotapigw:${PLATFORM:-linux}-${TAG:-latest}
|
2018-02-28 11:30:25 +01:00
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: src/ApiGateways/ApiGw-Base/Dockerfile
|
2018-05-22 15:33:21 +02:00
|
|
|
depends_on:
|
|
|
|
- nosql.data
|
|
|
|
- sql.data
|
|
|
|
- identity.api
|
|
|
|
- rabbitmq
|
|
|
|
- ordering.api
|
|
|
|
- marketing.api
|
|
|
|
- catalog.api
|
|
|
|
- basket.api
|
2018-01-26 16:09:36 +00:00
|
|
|
|
2018-02-15 17:30:39 +01:00
|
|
|
mobileshoppingagg:
|
2019-03-29 12:26:54 +01:00
|
|
|
image: ${REGISTRY:-eshop}/mobileshoppingagg:${PLATFORM:-linux}-${TAG:-latest}
|
2018-01-26 16:09:36 +00:00
|
|
|
build:
|
|
|
|
context: .
|
2018-02-28 11:30:25 +01:00
|
|
|
dockerfile: src/ApiGateways/Mobile.Bff.Shopping/aggregator/Dockerfile
|
2018-05-22 15:33:21 +02:00
|
|
|
depends_on:
|
|
|
|
- nosql.data
|
|
|
|
- sql.data
|
|
|
|
- identity.api
|
|
|
|
- rabbitmq
|
|
|
|
- ordering.api
|
|
|
|
- marketing.api
|
|
|
|
- catalog.api
|
|
|
|
- basket.api
|
2018-01-26 16:09:36 +00:00
|
|
|
|
2018-02-27 14:32:25 +01:00
|
|
|
webshoppingagg:
|
2019-03-29 12:26:54 +01:00
|
|
|
image: ${REGISTRY:-eshop}/webshoppingagg:${PLATFORM:-linux}-${TAG:-latest}
|
2018-02-27 14:32:25 +01:00
|
|
|
build:
|
|
|
|
context: .
|
2018-02-28 11:30:25 +01:00
|
|
|
dockerfile: src/ApiGateways/Web.Bff.Shopping/aggregator/Dockerfile
|
2018-05-22 15:33:21 +02:00
|
|
|
depends_on:
|
|
|
|
- nosql.data
|
|
|
|
- sql.data
|
|
|
|
- identity.api
|
|
|
|
- rabbitmq
|
|
|
|
- ordering.api
|
|
|
|
- marketing.api
|
|
|
|
- catalog.api
|
|
|
|
- basket.api
|
2018-02-27 14:32:25 +01:00
|
|
|
|
2018-04-19 00:58:09 +02:00
|
|
|
ordering.signalrhub:
|
2019-03-29 12:26:54 +01:00
|
|
|
image: ${REGISTRY:-eshop}/ordering.signalrhub:${PLATFORM:-linux}-${TAG:-latest}
|
2018-04-19 00:58:09 +02:00
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: src/Services/Ordering/Ordering.SignalrHub/Dockerfile
|
2018-05-22 15:33:21 +02:00
|
|
|
depends_on:
|
|
|
|
- nosql.data
|
|
|
|
- sql.data
|
|
|
|
- identity.api
|
|
|
|
- rabbitmq
|
|
|
|
- ordering.api
|
|
|
|
- marketing.api
|
|
|
|
- catalog.api
|
|
|
|
- basket.api
|
|
|
|
|
|
|
|
webstatus:
|
2019-03-29 12:26:54 +01:00
|
|
|
image: ${REGISTRY:-eshop}/webstatus:${PLATFORM:-linux}-${TAG:-latest}
|
2018-05-22 15:33:21 +02:00
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: src/Web/WebStatus/Dockerfile
|
|
|
|
|
|
|
|
webspa:
|
2019-03-29 12:26:54 +01:00
|
|
|
image: ${REGISTRY:-eshop}/webspa:${PLATFORM:-linux}-${TAG:-latest}
|
2018-05-22 15:33:21 +02:00
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: src/Web/WebSPA/Dockerfile
|
2018-06-12 19:05:51 +02:00
|
|
|
# depends_on:
|
|
|
|
# - webshoppingagg
|
|
|
|
# - webshoppingapigw
|
|
|
|
# - webmarketingapigw
|
2018-05-22 15:33:21 +02:00
|
|
|
|
|
|
|
webmvc:
|
2019-03-29 12:26:54 +01:00
|
|
|
image: ${REGISTRY:-eshop}/webmvc:${PLATFORM:-linux}-${TAG:-latest}
|
2018-05-22 15:33:21 +02:00
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: src/Web/WebMVC/Dockerfile
|
|
|
|
depends_on:
|
|
|
|
- webshoppingagg
|
|
|
|
- webshoppingapigw
|
|
|
|
- webmarketingapigw
|
2018-04-19 00:58:09 +02:00
|
|
|
|
2019-01-16 19:38:14 +01:00
|
|
|
webhooks.client:
|
2019-03-29 12:26:54 +01:00
|
|
|
image: ${REGISTRY:-eshop}/webhooks.client:${PLATFORM:-linux}-${TAG:-latest}
|
2019-01-16 19:38:14 +01:00
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: src/Web/WebhookClient/Dockerfile
|
|
|
|
depends_on:
|
|
|
|
- webhooks.api
|