Latest version: levsthings/nginx-reverse-proxy
Image lives here.
Include this image in your docker-compose.yml
:
## Example:
version: '3'
services:
nginx:
image: 'levsthings/nginx-reverse-proxy'
links:
- app:app
ports:
- '80:80'
networks:
- frontend
## Minimum settings of the app you'll reverse proxy to:
app:
build: .
ports:
- '3000'
networks:
- frontend
networks:
frontend: null