2021-11-24 10:42:52 +01:00
|
|
|
version: "3.8"
|
|
|
|
|
|
|
|
services:
|
|
|
|
nextcloud-fpm:
|
|
|
|
environment:
|
2023-01-03 21:47:02 +01:00
|
|
|
&smtp-configuration
|
2023-05-10 21:54:52 +02:00
|
|
|
SMTP_HOST: ${SMTP_HOST:?err}
|
|
|
|
SMTP_SECURE: ${SMTP_SECURE:-ssl}
|
|
|
|
SMTP_PORT: ${SMTP_PORT:-465}
|
|
|
|
SMTP_AUTHTYPE: ${SMTP_AUTHTYPE:-LOGIN}
|
|
|
|
SMTP_NAME: ${SMTP_NAME:?err}
|
|
|
|
SMTP_PASSWORD: ${SMTP_PASSWORD:?err}
|
|
|
|
MAIL_FROM_ADDRESS: ${MAIL_FROM_ADDRESS:?err}
|
|
|
|
MAIL_DOMAIN: ${MAIL_DOMAIN:?err}
|
2023-01-03 21:47:02 +01:00
|
|
|
|
|
|
|
nextcloud-cron:
|
|
|
|
environment:
|
|
|
|
<<: *smtp-configuration
|