You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# An external IP or DNS name has to be used (instead localhost and the 10.0.75.1 IP) when testing the Web apps and the Xamarin apps from remote machines/devices using the same WiFi, for instance.
8
8
9
9
services:
10
-
10
+
sql.data:
11
+
environment:
12
+
- SA_PASSWORD=Pass@word
13
+
- ACCEPT_EULA=Y
14
+
ports:
15
+
- "5433:1433"# Important: In a production environment your should remove the external port
16
+
17
+
nosql.data:
18
+
ports:
19
+
- "27017:27017"# Important: In a production environment your should remove the external port
20
+
21
+
basket.data:
22
+
ports:
23
+
- "6379:6379"# Important: In a production environment your should remove the external port
24
+
25
+
rabbitmq:
26
+
ports:
27
+
- "15672:15672"# Important: In a production environment your should remove the external port
28
+
- "5672:5672"# Important: In a production environment your should remove the external port
- XamarinCallback=http://${ESHOP_PROD_EXTERNAL_DNS_NAME_OR_IP}:5105/xamarincallback #localhost do not work for UWP login, so we have to use "external" IP always
- XamarinCallback=http://${ESHOP_PROD_EXTERNAL_DNS_NAME_OR_IP}:5105/xamarincallback #localhost do not work for UWP login, so we have to use "external" IP always
- "5110:80"# Important: In a production environment your should remove the external port (5110) kept here for microservice debugging purposes.
132
151
# The API Gateway redirects and access through the internal port (80).
133
152
134
-
webspa:
135
-
environment:
136
-
- ASPNETCORE_ENVIRONMENT=Development
137
-
- ASPNETCORE_URLS=http://0.0.0.0:80
138
-
- IdentityUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105 #Local: You need to open your local dev-machine firewall at range 5100-5105. at range 5100-5105.
- IdentityUrl=http://10.0.75.1:5105 # Local Mac: Use http://docker.for.mac.localhost:5105 || Local Windows: Use 10.0.75.1 in a "Docker for Windows" environment, if using "localhost" from browser. || #Remote access: Use ${ESHOP_EXTERNAL_DNS_NAME_OR_IP} if using external IP or DNS name from browser.
160
-
- MarketingUrl=http://webmarketingapigw
161
-
- CatalogUrlHC=http://catalog.api/hc
162
-
- OrderingUrlHC=http://ordering.api/hc
163
-
- IdentityUrlHC=http://identity.api/hc #Local: Use ${ESHOP_PROD_EXTERNAL_DNS_NAME_OR_IP}, if using external IP or DNS name from browser.
- IdentityUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105 #Local: You need to open your local dev-machine firewall at range 5100-5105. at range 5100-5105.
- IdentityUrl=http://10.0.75.1:5105 # Local Mac: Use http://docker.for.mac.localhost:5105 || Local Windows: Use 10.0.75.1 in a "Docker for Windows" environment, if using "localhost" from browser. || #Remote access: Use ${ESHOP_EXTERNAL_DNS_NAME_OR_IP} if using external IP or DNS name from browser.
303
+
- MarketingUrl=http://webmarketingapigw
304
+
- CatalogUrlHC=http://catalog.api/hc
305
+
- OrderingUrlHC=http://ordering.api/hc
306
+
- IdentityUrlHC=http://identity.api/hc #Local: Use ${ESHOP_PROD_EXTERNAL_DNS_NAME_OR_IP}, if using external IP or DNS name from browser.
0 commit comments