From c163f5e5a6259b88542e9ea27d04613d1de8d70e Mon Sep 17 00:00:00 2001 From: Eric Fleming Date: Tue, 24 Sep 2019 17:01:32 -0400 Subject: [PATCH] Removing https from override - There are issues with generating a local cert when trying to run this project from the docker-compose at the moment. Removing the https bits for now until so the docker-compose will work right after cloning the project. --- docker-compose.override.yml | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/docker-compose.override.yml b/docker-compose.override.yml index 40b962b..006a17a 100644 --- a/docker-compose.override.yml +++ b/docker-compose.override.yml @@ -1,14 +1,11 @@ version: '3.4' - services: - eshopwebmvc: - environment: - - ASPNETCORE_ENVIRONMENT=Development - - ASPNETCORE_URLS=https://+:443;http://+:80 - - ASPNETCORE_HTTPS_PORT=5443 - ports: - - "5106:80" - - "5443:443" - volumes: - - ~/.aspnet/https:/root/.aspnet/https:ro - - ~/.microsoft/usersecrets:/root/.microsoft/usersecrets:ro \ No newline at end of file + eshopwebmvc: + environment: + - ASPNETCORE_ENVIRONMENT=Development + - ASPNETCORE_URLS=http://+:80 + ports: + - "5106:80" + volumes: + - ~/.aspnet/https:/root/.aspnet/https:ro + - ~/.microsoft/usersecrets:/root/.microsoft/usersecrets:ro \ No newline at end of file