Skip to content

Commit

Permalink
fix(reverse-proxy): 🐛 fix ports var interpolation
Browse files Browse the repository at this point in the history
  • Loading branch information
collinbarrett committed Oct 3, 2020
1 parent e9f6235 commit 08bae1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose.override.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version: "3.7"
services:
reverse-proxy:
ports:
- ${REVERSE_PROXY_HOST_PORT_HTTP}:80
- "${REVERSE_PROXY_HOST_PORT_HTTP}:80"
volumes:
- ./reverse-proxy/conf.d.dev:/etc/nginx/conf.d:ro
command: ["nginx-debug", "-g", "daemon off;"]
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version: "3.7"
services:
reverse-proxy:
ports:
- ${REVERSE_PROXY_HOST_PORT_HTTPS}:443
- "${REVERSE_PROXY_HOST_PORT_HTTPS}:443"
depends_on:
- web
volumes:
Expand Down

0 comments on commit 08bae1e

Please sign in to comment.