Browse Source

Revert "Remove basket.data from docker-compose"

This reverts commit 9549786003.
pull/235/head
Christian Arenas 7 years ago
parent
commit
60c08ce9c5
3 changed files with 8 additions and 0 deletions
  1. +1
    -0
      docker-compose.override.yml
  2. +1
    -0
      docker-compose.prod.yml
  3. +6
    -0
      docker-compose.yml

+ 1
- 0
docker-compose.override.yml 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:


+ 1
- 0
docker-compose.prod.yml 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:


+ 6
- 0
docker-compose.yml 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:


Loading…
Cancel
Save