Revert "Remove basket.data from docker-compose"

This reverts commit 9549786003d723493d865ba83420ed127bc34d53.
This commit is contained in:
Christian Arenas 2017-05-29 11:06:22 +02:00
parent db7d2a3ff3
commit 60c08ce9c5
3 changed files with 8 additions and 0 deletions

View File

@ -12,6 +12,7 @@ services:
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=http://0.0.0.0:80
- ConnectionString=basket.data
- identityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5105. at range 5100-5105.
- EventBusConnection=rabbitmq
ports:

View File

@ -17,6 +17,7 @@ services:
environment:
- ASPNETCORE_ENVIRONMENT=Production
- ASPNETCORE_URLS=http://0.0.0.0:80
- ConnectionString=basket.data
- identityUrl=http://identity.api #Local: You need to open your host's firewall at range 5100-5105. at range 5100-5105.
- EventBusConnection=rabbitmq
ports:

View File

@ -7,6 +7,7 @@ services:
context: ./src/Services/Basket/Basket.API
dockerfile: Dockerfile
depends_on:
- basket.data
- identity.api
- rabbitmq
@ -58,6 +59,11 @@ services:
sql.data:
image: microsoft/mssql-server-linux
basket.data:
image: redis
ports:
- "6379:6379"
rabbitmq:
image: rabbitmq
ports: