fix(reverse-proxy): 🐛 rm port env vars for now

ref https://github.com/docker/compose/pull/1765
This commit is contained in:
Collin M. Barrett 2020-10-03 10:37:24 -05:00
parent 08bae1eb19
commit 240194eec1
3 changed files with 2 additions and 5 deletions

3
.env
View file

@ -1,6 +1,3 @@
REVERSE_PROXY_HOST_PORT_HTTP=8080
REVERSE_PROXY_HOST_PORT_HTTPS=
ARCHIVAL_APPLICATION_INSIGHTS_SERVER_TELEMETRY_CHANNEL_STORAGE_PATH=application-insights
ARCHIVAL_GIT_REPOSITORY_PATH=archives

View file

@ -5,7 +5,7 @@ version: "3.7"
services:
reverse-proxy:
ports:
- "${REVERSE_PROXY_HOST_PORT_HTTP}:80"
- "8080:80"
volumes:
- ./reverse-proxy/conf.d.dev:/etc/nginx/conf.d:ro
command: ["nginx-debug", "-g", "daemon off;"]

View file

@ -5,7 +5,7 @@ version: "3.7"
services:
reverse-proxy:
ports:
- "${REVERSE_PROXY_HOST_PORT_HTTPS}:443"
- "443:443"
depends_on:
- web
volumes: