-
Notifications
You must be signed in to change notification settings - Fork 97
Howto: Use Your Own TLS Certificates
Jeffrey Boehm edited this page Sep 5, 2019
·
1 revision
- Remove the
ssl
service fromdocker-compose.yml
, by removing the entire block. - Uncomment the volume notations in the
mta
andmda
blocks, delete the data-tls mounts:mta: image: jeboehm/mailserver-mta:latest ... volumes: - /home/user/certs/mail.example.com.crt:/media/tls/mailserver.crt:ro - /home/user/certs/mail.example.com.key:/media/tls/mailserver.key:ro mda: image: jeboehm/mailserver-mda:latest ... volumes: - data-mail:/var/vmail - /home/user/certs/mail.example.com.crt:/media/tls/mailserver.crt:ro - /home/user/certs/mail.example.com.key:/media/tls/mailserver.key:ro
- Delete the
data-tls
volume from the volumes section by removing the entire block.