Rainloop web client Docker image using nginx (SSL).
docker pull krishath/rainloop-ssl
docker run -d --name rainloop -v certfolder:/etc/ssl -h rainloop -p 443:443 krishath/rainloop
Open your browser and visit
https://127.0.0.1
Mount your host folder containing your cert && key to /etc/ssl
.
Name (or link) them as cert.key
and cert.pem
.
Create a new pair of DH keys and mount them to /etc/ssl/certs/dhparam.pem
You can generate them by issuing: openssl dhparam -out dhparam.pem 4096
Mount your data folder to /webapps/rainloop/data
.
webmail:
image: "krishath/rainloop-ssl"
volumes:
- ./webmail/ssl:/etc/ssl
- ./webmail/data:/webapps/rainloop/data
ports:
- "9000:443"
Apache 2 http://en.wikipedia.org/wiki/Apache_License
I've initially modified the Dockerfile of ahmet2mir.