mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2025-08-03 17:44:49 +02:00
parent
16a7d90296
commit
602f6fce06
1 changed files with 17 additions and 0 deletions
|
@ -118,6 +118,23 @@ You don't have to do anything else. Enjoy!
|
|||
```
|
||||
|
||||
2. Add a volume for `docker-mailserver` that maps the _local `certbot/certs/` folder_ to the container path `/etc/letsencrypt/`.
|
||||
|
||||
!!! example
|
||||
|
||||
Add these additions to the `mailserver` service in your [`docker-compose.yml`][github-file-compose]:
|
||||
|
||||
```yaml
|
||||
services:
|
||||
mailserver:
|
||||
# For the FQDN 'mail.example.com':
|
||||
hostname: mail
|
||||
domainname: example.com
|
||||
environment:
|
||||
- SSL_TYPE=letsencrypt
|
||||
volumes:
|
||||
- ./docker-data/certbot/certs/:/etc/letsencrypt
|
||||
```
|
||||
|
||||
3. The certificate setup is complete, but remember _it will expire_. Consider automating renewals.
|
||||
|
||||
!!! tip "Renewing Certificates"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue