Skip to content

Latest commit

 

History

History

rainloop

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

GreenMail test setup with Rainloop

Extends solidnerd/rainloop:1.10.5.192 Docker image with a configured GreenMail domain.

Run docker-compose up and access Rainloop in your browser.

Port Description
3080 Rainloop Client
3025 GreenMail SMTP
3143 GreenMail IMAP

How to run with docker (instead of docker-compose)

  1. Build configured Rainloop image
    docker build -t greenmail/client-rainloop .

  2. Start GreenMail

docker run -t -i --name greenmail \
           -e GREENMAIL_OPTS='-Dgreenmail.setup.test.all -Dgreenmail.hostname=0.0.0.0 -Dgreenmail.auth.disabled -Dgreenmail.verbose' \
           -p 3025:3025 -p 3143:3143 greenmail/standalone:<VERSION>`
  1. Start configured Rainloop image

docker run -t -i --link greenmail -p 3080:80 greenmail/client-rainloop