Browse Source

Remove basket.data from docker-compose

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

+ 0
- 1
docker-compose.override.yml View File

@ -12,7 +12,6 @@ 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:


+ 0
- 1
docker-compose.prod.yml View File

@ -17,7 +17,6 @@ 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:


+ 0
- 6
docker-compose.yml View File

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


Loading…
Cancel
Save