-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcompose.yaml
74 lines (67 loc) · 1.66 KB
/
compose.yaml
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
version: '3.9'
services:
database:
image: mariadb:10.5
container_name: mailserver_database
restart: unless-stopped
environment:
MYSQL_ROOT_PASSWORD: example_root_password
MYSQL_DATABASE: postfix
MYSQL_USER: postfix
MYSQL_PASSWORD: example_password
volumes:
- db_data:/var/lib/mysql
postfix:
image: technicalguru/docker-mailserver-postfix
container_name: mailserver_postfix
restart: unless-stopped
environment:
DB_HOST: database
DB_USER: postfix
DB_PASS: example_password
ports:
- "25:25"
- "465:465"
- "587:587"
volumes:
- postfix_data:/var/mail
- ./config/postfix:/etc/postfix:ro
opendkim:
image: technicalguru/docker-mailserver-opendkim
container_name: mailserver_opendkim
restart: unless-stopped
volumes:
- opendkim_data:/etc/opendkim
amavis:
image: technicalguru/docker-mailserver-amavis
container_name: mailserver_amavis
restart: unless-stopped
ports:
- "10024:10024"
environment:
- AMAVIS_LOGLEVEL=1
postfixadmin:
image: technicalguru/docker-mailserver-postfixadmin
container_name: mailserver_postfixadmin
restart: unless-stopped
environment:
DB_HOST: database
DB_USER: postfix
DB_PASS: example_password
DB_NAME: postfix
ports:
- "8080:80"
roundcube:
image: technicalguru/docker-mailserver-roundcube
container_name: mailserver_roundcube
restart: unless-stopped
environment:
DB_HOST: database
DB_USER: postfix
DB_PASS: example_password
ports:
- "80:80"
volumes:
db_data:
postfix_data:
opendkim_data: