Initial commit
This commit is contained in:
commit
996fcc4d85
1 changed files with 22 additions and 0 deletions
22
docker-compose.yml
Normal file
22
docker-compose.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
version: '2'
|
||||
|
||||
services:
|
||||
imap:
|
||||
image: tschwery/dovecot
|
||||
environment:
|
||||
- ACCOUNTS=smtp:a
|
||||
volumes:
|
||||
- './maildir:/home/smtp/Maildir'
|
||||
ports:
|
||||
- "10143:143"
|
||||
|
||||
smtp:
|
||||
image: tschwery/postfix
|
||||
environment:
|
||||
- DOMAIN=code.sai-erp.net
|
||||
- ACCOUNTS=incoming
|
||||
volumes:
|
||||
- './maildir:/home/smtp/Maildir'
|
||||
ports:
|
||||
- "10025:25"
|
||||
|
Reference in a new issue