|
|
@ -3,9 +3,6 @@ version: '2' |
|
|
|
services: |
|
|
|
basket.api: |
|
|
|
image: eshop/basket.api |
|
|
|
build: |
|
|
|
context: ./src/Services/Basket/Basket.API |
|
|
|
dockerfile: Dockerfile |
|
|
|
depends_on: |
|
|
|
- basket.data |
|
|
|
- identity.api |
|
|
@ -13,43 +10,28 @@ services: |
|
|
|
|
|
|
|
catalog.api: |
|
|
|
image: eshop/catalog.api |
|
|
|
build: |
|
|
|
context: ./src/Services/Catalog/Catalog.API |
|
|
|
dockerfile: Dockerfile |
|
|
|
depends_on: |
|
|
|
- sql.data |
|
|
|
- rabbitmq |
|
|
|
|
|
|
|
identity.api: |
|
|
|
image: eshop/identity.api |
|
|
|
build: |
|
|
|
context: ./src/Services/Identity/Identity.API |
|
|
|
dockerfile: Dockerfile |
|
|
|
depends_on: |
|
|
|
- sql.data |
|
|
|
|
|
|
|
ordering.api: |
|
|
|
image: eshop/ordering.api |
|
|
|
build: |
|
|
|
context: ./src/Services/Ordering/Ordering.API |
|
|
|
dockerfile: Dockerfile |
|
|
|
depends_on: |
|
|
|
- sql.data |
|
|
|
|
|
|
|
webspa: |
|
|
|
image: eshop/webspa |
|
|
|
build: |
|
|
|
context: ./src/Web/WebSPA |
|
|
|
dockerfile: Dockerfile |
|
|
|
depends_on: |
|
|
|
- identity.api |
|
|
|
- basket.api |
|
|
|
|
|
|
|
webmvc: |
|
|
|
image: eshop/webmvc |
|
|
|
build: |
|
|
|
context: ./src/Web/WebMVC |
|
|
|
dockerfile: Dockerfile |
|
|
|
depends_on: |
|
|
|
- catalog.api |
|
|
|
- ordering.api |
|
|
|