Browse Source

Modifies the IdentityUrl in 'webmvc' environment in docker-compose.override.yaml file. Changes the hardcoded 'http://10.0.75.1:5105' value to 'http://:5105'.

pull/1230/head
Rafay Khan 5 years ago
parent
commit
7eb1f183f2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/docker-compose.override.yml

+ 1
- 1
src/docker-compose.override.yml View File

@ -358,7 +358,7 @@ services:
- ASPNETCORE_ENVIRONMENT=Development - ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=http://0.0.0.0:80 - ASPNETCORE_URLS=http://0.0.0.0:80
- PurchaseUrl=http://webshoppingapigw - PurchaseUrl=http://webshoppingapigw
- IdentityUrl=http://10.0.75.1:5105
- IdentityUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
- MarketingUrl=http://webmarketingapigw - MarketingUrl=http://webmarketingapigw
- SignalrHubUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5202 - SignalrHubUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5202
- IdentityUrlHC=http://identity-api/hc - IdentityUrlHC=http://identity-api/hc


Loading…
Cancel
Save