Automated HTTPS server using Nginx and Let's Encrypt. Run web apps over HTTPS.
150
This image is a fully automated HTTPS server powered by Nginx, Let's Encrypt, and Docker. It allows you to run any existing web application over HTTPS with minimal configuration.
version: '3'
services:
https:
image: sevenajay/mrcloudbook-https:7.0
ports:
- '80:80'
- '443:443'
restart: always
environment:
DOMAINS: 'example.com -> http://example:80'
STAGE: 'production' # Use 'staging' for testing
volumes:
- letsencrypt:/var/lib/https-portal
volumes:
letsencrypt:
Replace example.com and example with your domain and app name adjust the upstream service as needed.
STAGE: 'production' once you've confirmed everything works.This image makes securing your web applications with HTTPS simple and automated. Perfect for both development and production environments.
Content type
Image
Digest
sha256:0cea7d15e…
Size
130.3 MB
Last updated
almost 2 years ago
docker pull sevenajay/mrcloudbook-https:7.0