Reverse proxy for Docker containers with automatic SSL using Let's Encrypt
2.8K
Automated reverse proxy for Docker containers. While similar to jwilder/nginx-proxy, the main additional feature is fully automated SSL configuration using Let's Encrypt. Each virtual host gets its own SSL certificate, which is automatically renewed periodically.
Run like this:
docker run -d -e [email protected] -v /var/run/docker.sock:/var/run/docker.sock:ro -p 80:80 -p 443:443 robbertkl/proxy
If you'd like to use a custom NGINX configuration template, just bind mount it with -v <path-to-template>:/usr/src/app/nginx.conf.tmpl.
Run your web containers like this:
docker run -d -l proxy.host=example.org,www.example.org <image>
For HTTP basic authentication you can bind mount a directory with your password file(s) using -v <path-to-passwd-dir>:/etc/nginx/htpasswd. You can then use the label proxy.auth=<filename> when starting a container to enable HTTP basic authentication for that container.
For the proxy container:
LETSENCRYPT_EMAIL (e-mail address to use for Let's Encrypt)For your web containers:
proxy.host= (1 or more hostnames, comma-separated)proxy.auth= (file for HTTP basic authentication, absolute or relative to /etc/nginx/htpasswd)This repo is published under the MIT License.
Content type
Image
Digest
Size
67.7 MB
Last updated
almost 6 years ago
docker pull robbertkl/proxy:dependabot_npm_and_yarn_bl-3.0.1