Forked from https://github.com/peperunas/docker-rainloop
Working now with Let's Encrypt
Rainloop web client Docker image using nginx (SSL).
docker pull pingbo/docker-rainloop
docker run -d --name rainloop -v LetsEncrypt/live:/etc/ssl -h rainloop -p 443:443 pingbo/docker-rainloop
rainloop:
	image: pingbo/docker-rainloop
	container_name: rainloop
	environment:
	- VIRTUAL_HOST=mail.domain.tld
	- VIRTUAL_PROTO=https
	- VIRTUAL_PORT=443
	- LETSENCRYPT_HOST=mail.domain.tld
	- LETSENCRYPT_EMAIL=foo@bar
	volumes:
	- path/to/rainloop/data:/webapps/rainloop/data
	- path/to/letsencrypt/mail.domain.tld/:/etc/ssl/
	ports:
	- "443:443"
	network_mode: bridge
Open your browser and visit
https://127.0.0.1
Mount your data folder to /webapps/rainloop/data.
Apache 2 http://en.wikipedia.org/wiki/Apache_License
I've initially modified the Dockerfile of ahmet2mir.