Browse Source

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.
main
Eric Fleming 6 years ago
parent
commit
c163f5e5a6
  1. 21
      docker-compose.override.yml

21
docker-compose.override.yml

@ -1,14 +1,11 @@
version: '3.4' version: '3.4'
services: services:
eshopwebmvc: eshopwebmvc:
environment: environment:
- ASPNETCORE_ENVIRONMENT=Development - ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=https://+:443;http://+:80 - ASPNETCORE_URLS=http://+:80
- ASPNETCORE_HTTPS_PORT=5443 ports:
ports: - "5106:80"
- "5106:80" volumes:
- "5443:443" - ~/.aspnet/https:/root/.aspnet/https:ro
volumes: - ~/.microsoft/usersecrets:/root/.microsoft/usersecrets:ro
- ~/.aspnet/https:/root/.aspnet/https:ro
- ~/.microsoft/usersecrets:/root/.microsoft/usersecrets:ro
Loading…
Cancel
Save