@@ -5,6 +5,7 @@ services:
55 basket.api :
66 environment :
77 - ASPNETCORE_ENVIRONMENT=Development
8+ - ASPNETCORE_URLS=http://0.0.0.0:5103
89 - ConnectionString=basket.data
910 # - identityUrl=http://13.88.8.119:5105 #Remote: VM Needs to have public access at 5105.
1011 - identityUrl=http://identity.api:5105 # Local: You need to open your local dev-machine firewall at range 5100-5105. at range 5100-5105.
@@ -14,6 +15,7 @@ services:
1415 catalog.api :
1516 environment :
1617 - ASPNETCORE_ENVIRONMENT=Development
18+ - ASPNETCORE_URLS=http://0.0.0.0:5101
1719 - ConnectionString=Server=sql.data;Database=Microsoft.eShopOnContainers.Services.CatalogDb;User Id=sa;Password=Pass@word
1820 # - ExternalCatalogBaseUrl=http://13.88.8.119:5101 #Remote: VM Needs to have public access at 5105.
1921 - ExternalCatalogBaseUrl=http://localhost:5101 # Local: You need to open your local dev-machine firewall at range 5100-5105. at range 5100-5105.
@@ -23,6 +25,7 @@ services:
2325 identity.api :
2426 environment :
2527 - ASPNETCORE_ENVIRONMENT=Development
28+ - ASPNETCORE_URLS=http://0.0.0.0:5105
2629 - SpaClient=http://localhost:5104
2730 - ConnectionStrings__DefaultConnection=Server=sql.data;Database=Microsoft.eShopOnContainers.Service.IdentityDb;User Id=sa;Password=Pass@word
2831 # - MvcClient=http://13.88.8.119:5100 #Remote: VM Needs to have public access at 5105.
@@ -33,6 +36,7 @@ services:
3336 ordering.api :
3437 environment :
3538 - ASPNETCORE_ENVIRONMENT=Development
39+ - ASPNETCORE_URLS=http://0.0.0.0:5102
3640 - ConnectionString=Server=sql.data;Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id=sa;Password=Pass@word
3741 # - identityUrl=http://13.88.8.119:5105 #Remote: VM Needs to have public access at 5105.
3842 - identityUrl=http://identity.api:5105 # Local: You need to open your local dev-machine firewall at range 5100-5105. at range 5100-5105.
@@ -42,6 +46,7 @@ services:
4246 webspa :
4347 environment :
4448 - ASPNETCORE_ENVIRONMENT=Development
49+ - ASPNETCORE_URLS=http://0.0.0.0:5104
4550 - CatalogUrl=http://localhost:5101
4651 - OrderingUrl=http://localhost:5102
4752 # - IdentityUrl=http://13.88.8.119:5105 #Remote: VM Needs to have public access at 5105.
@@ -53,6 +58,7 @@ services:
5358 webmvc :
5459 environment :
5560 - ASPNETCORE_ENVIRONMENT=Development
61+ - ASPNETCORE_URLS=http://0.0.0.0:5100
5662 - CatalogUrl=http://catalog.api:5101
5763 - OrderingUrl=http://ordering.api:5102
5864 # - IdentityUrl=http://13.88.8.119:5105 #Remote: VM Needs to have public access at 5105.
0 commit comments