Skip to content

Instantly share code, notes, and snippets.

@helloqiu
Created September 28, 2018 16:26
Show Gist options
  • Save helloqiu/31de27003d75a287f5d3122fbae0f24c to your computer and use it in GitHub Desktop.
Save helloqiu/31de27003d75a287f5d3122fbae0f24c to your computer and use it in GitHub Desktop.
create simple test smtp server
version: '2'
services:
imap:
image: antespi/docker-imap-devel:latest
container_name: imap
ports:
- "25:25"
- "143:143"
- "993:993"
environment:
- MAILNAME=example.org
- MAIL_ADDRESS=address@example.org
- MAIL_PASS=pass
rainloop:
image: ahmet2mir/rainloop
mem_limit: 256m
ports:
- 8080:80
links:
- "imap:mailserver"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment