* static added to Constants * Docker support for Blazor * GetHttp, PostHttp, ... inside AuthService, Docker working with login, Cookies Configuration temporary disabled * BaseAddress get web uri from Blazor Shared. * cookie options changed to fix docker. * Fixed returnUrl when inserting admin link and navigate without login * Functions not used removed. * AddPolicy using GetWebUrl * Login link removed from NavMenu * Change ConfigureCookieSettings, ConfigureCoreServices and ConfigureWebServices to be IServiceCollection extentions. * GetOriginWebUrl added. * Auto InDocker switch added. * Removed not used using .
22 lines
640 B
YAML
22 lines
640 B
YAML
version: '3.4'
|
|
services:
|
|
eshopwebmvc:
|
|
environment:
|
|
- ASPNETCORE_ENVIRONMENT=Development
|
|
- ASPNETCORE_URLS=http://+:80
|
|
- DOTNET_RUNNING_IN_CONTAINER=true
|
|
ports:
|
|
- "5106:80"
|
|
volumes:
|
|
- ~/.aspnet/https:/root/.aspnet/https:ro
|
|
- ~/.microsoft/usersecrets:/root/.microsoft/usersecrets:ro
|
|
eshoppublicapi:
|
|
environment:
|
|
- ASPNETCORE_ENVIRONMENT=Development
|
|
- ASPNETCORE_URLS=http://+:80
|
|
- DOTNET_RUNNING_IN_CONTAINER=true
|
|
ports:
|
|
- "5200:80"
|
|
volumes:
|
|
- ~/.aspnet/https:/root/.aspnet/https:ro
|
|
- ~/.microsoft/usersecrets:/root/.microsoft/usersecrets:ro |