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
# The default docker-compose.override file can use the "localhost" as the external name for testing web apps within the same dev machine.
4
+
# The ESHOP_EXTERNAL_DNS_NAME_OR_IP environment variable is taken, by default, from the ".env" file defined like:
5
+
# ESHOP_EXTERNAL_DNS_NAME_OR_IP=localhost
6
+
# but values present in the environment vars at runtime will always override those defined inside the .env file
7
+
# 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
+
9
+
services:
10
+
11
+
basket.api:
12
+
environment:
13
+
- ASPNETCORE_ENVIRONMENT=Development
14
+
- ASPNETCORE_URLS=http://0.0.0.0:5103
15
+
- ConnectionString=basket.data
16
+
- identityUrl=http://identity.api:5105 #Local: You need to open your local dev-machine firewall at range 5100-5105. at range 5100-5105.
- ExternalCatalogBaseUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5101 #Local: You need to open your local dev-machine firewall at range 5100-5105. at range 5100-5105.
- 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.
# but values present in the environment vars at runtime will always override those defined inside the .env file
7
+
# An external IP or DNS name has to be used when testing the Web apps and the Xamarin apps from remote machines/devices using the same WiFi, for instance.
8
+
#
9
+
# Set ASPNETCORE_ENVIRONMENT=Development to get errors while testing.
10
+
#
11
+
# You need to start it with the following CLI command:
12
+
# docker-compose -f docker-compose-windows.yml -f docker-compose-windows.prod.yml up -d
13
+
14
+
services:
15
+
16
+
basket.api:
17
+
environment:
18
+
- ASPNETCORE_ENVIRONMENT=Production
19
+
- ASPNETCORE_URLS=http://0.0.0.0:5103
20
+
- ConnectionString=basket.data
21
+
- identityUrl=http://identity.api:5105 #Local: You need to open your host's firewall at range 5100-5105. at range 5100-5105.
- ExternalCatalogBaseUrl=http://${ESHOP_PROD_EXTERNAL_DNS_NAME_OR_IP}:5101 #Local: You need to open your host's firewall at range 5100-5105. at range 5100-5105.
- IdentityUrl=http://${ESHOP_PROD_EXTERNAL_DNS_NAME_OR_IP}:5105 #Local: Use ${ESHOP_PROD_EXTERNAL_DNS_NAME_OR_IP}, if using external IP or DNS name from browser.
- ExternalCatalogBaseUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5101 #Local: You need to open your local dev-machine firewall at range 5100-5105. at range 5100-5105.
26
+
- ExternalCatalogBaseUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5101 #Local: You need to open your local dev-machine firewall at range 5100-5105. at range 5100-5105.
0 commit comments