-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
49 lines (47 loc) · 980 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
version: '3'
services:
spamassassin:
build: spamassassin
image: vmail-spamassassin:1.6
volumes:
- postfix-vm-pop3d-tuning:/etc/tuning
ports:
- "783:783"
postgrey:
build: postgrey
image: vmail-postgrey:1.6
volumes:
- postfix-vm-pop3d-tuning:/etc/tuning
ports:
- "10023:10023"
smtp:
build: postfix
image: vmail-postfix:1.6
volumes:
- postfix-vm-pop3d-etc:/etc/virtual
- postfix-vm-pop3d-spool:/var/spool/virtual
ports:
- "25:25"
- "465:465"
links:
- spamassassin
- postgrey
pop3:
build: vmpop3d
image: vmail-vmpop3d:1.6
volumes:
- postfix-vm-pop3d-etc:/etc/virtual
- postfix-vm-pop3d-spool:/var/spool/virtual
ports:
- "110:110"
stunnel:
build: stunnel
image: vmail-stunnel:1.6
ports:
- "995:995"
links:
- pop3
volumes:
postfix-vm-pop3d-etc:
postfix-vm-pop3d-spool:
postfix-vm-pop3d-tuning: