Skip to content

Commit

Permalink
Removing https from override
Browse files Browse the repository at this point in the history
- 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.
  • Loading branch information
efleming18 committed Sep 24, 2019
1 parent 42e2149 commit c163f5e
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions docker-compose.override.yml
Original file line number Diff line number Diff line change
@@ -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
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

0 comments on commit c163f5e

Please sign in to comment.