Skip to content

Commit b30b0c2

Browse files
committedJul 28, 2020
Code cleanup
2 parents 2c9c7dd + ec5ffef commit b30b0c2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+250
-254
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ You can run the Web sample by running these commands from the root folder (where
103103
docker-compose up
104104
```
105105

106-
You should be able to make requests to localhost:5106 for the Web project, and localhost:5200 for the Public API project once these commands complete.
106+
You should be able to make requests to localhost:5106 for the Web project, and localhost:5200 for the Public API project once these commands complete. If you have any problems, especially with login, try from a new guest or incognito browser instance.
107107

108108
You can also run the applications by using the instructions located in their `Dockerfile` file in the root of each project. Again, run these commands from the root of the solution (where the .sln file is located).
109109

‎docker-compose.override.yml

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ services:
44
environment:
55
- ASPNETCORE_ENVIRONMENT=Development
66
- ASPNETCORE_URLS=http://+:80
7+
- DOTNET_RUNNING_IN_CONTAINER=true
78
ports:
89
- "5106:80"
910
volumes:
@@ -13,6 +14,7 @@ services:
1314
environment:
1415
- ASPNETCORE_ENVIRONMENT=Development
1516
- ASPNETCORE_URLS=http://+:80
17+
- DOTNET_RUNNING_IN_CONTAINER=true
1618
ports:
1719
- "5200:80"
1820
volumes:

0 commit comments

Comments
 (0)
Please sign in to comment.