2016-09-14 08:35:34 -07:00
|
|
|
version: '2'
|
|
|
|
|
|
|
|
services:
|
2016-12-07 13:57:31 +01:00
|
|
|
basket.api:
|
2017-02-15 18:55:50 -08:00
|
|
|
image: eshop/basket.api
|
2017-05-19 19:32:42 +02:00
|
|
|
build:
|
|
|
|
context: ./src/Services/Basket/Basket.API
|
|
|
|
dockerfile: Dockerfile
|
2016-12-07 13:57:31 +01:00
|
|
|
depends_on:
|
|
|
|
- basket.data
|
2017-02-14 18:11:51 +01:00
|
|
|
- identity.api
|
2017-03-09 15:56:34 +01:00
|
|
|
- rabbitmq
|
2016-12-07 13:57:31 +01:00
|
|
|
|
2016-09-14 08:35:34 -07:00
|
|
|
catalog.api:
|
2017-02-15 18:55:50 -08:00
|
|
|
image: eshop/catalog.api
|
2017-05-19 19:32:42 +02:00
|
|
|
build:
|
|
|
|
context: ./src/Services/Catalog/Catalog.API
|
|
|
|
dockerfile: 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
|
|
|
identity.api:
|
2017-02-15 18:55:50 -08:00
|
|
|
image: eshop/identity.api
|
2017-05-19 19:32:42 +02:00
|
|
|
build:
|
|
|
|
context: ./src/Services/Identity/Identity.API
|
|
|
|
dockerfile: Dockerfile
|
2016-12-19 10:20:02 +01:00
|
|
|
depends_on:
|
|
|
|
- sql.data
|
2016-10-05 17:04:35 -07:00
|
|
|
|
2017-02-14 18:11:51 +01:00
|
|
|
ordering.api:
|
2017-02-15 18:55:50 -08:00
|
|
|
image: eshop/ordering.api
|
2017-05-19 19:32:42 +02:00
|
|
|
build:
|
|
|
|
context: ./src/Services/Ordering/Ordering.API
|
|
|
|
dockerfile: Dockerfile
|
2016-12-15 14:35:35 -08:00
|
|
|
depends_on:
|
2016-12-17 14:41:16 +01:00
|
|
|
- sql.data
|
2016-12-15 14:35:35 -08:00
|
|
|
|
2017-02-15 10:44:59 -05:00
|
|
|
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
|
2017-02-14 18:11:51 +01:00
|
|
|
|
|
|
|
webmvc:
|
2017-02-15 18:55:50 -08:00
|
|
|
image: eshop/webmvc
|
2017-05-19 19:32:42 +02:00
|
|
|
build:
|
|
|
|
context: ./src/Web/WebMVC
|
|
|
|
dockerfile: Dockerfile
|
2017-02-14 18:11:51 +01:00
|
|
|
depends_on:
|
2017-02-15 23:12:37 -08:00
|
|
|
- catalog.api
|
|
|
|
- ordering.api
|
2017-02-14 18:11:51 +01:00
|
|
|
- identity.api
|
|
|
|
- basket.api
|
|
|
|
|
2016-12-17 14:41:16 +01:00
|
|
|
sql.data:
|
2016-11-28 12:58:51 +01:00
|
|
|
image: microsoft/mssql-server-linux
|
2016-12-15 14:35:35 -08:00
|
|
|
|
|
|
|
basket.data:
|
|
|
|
image: redis
|
2016-12-22 18:34:57 +01:00
|
|
|
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
|