mirror of
https://github.com/friendica/docker
synced 2025-03-06 23:14:32 +01:00
- Adding `sendmail` feature to `apache` and `fpm` - Adding section `.examples/dockerfiles` - Adding section `.examples/dockerfiles/cron` to combine app & external cron-jobs - Adding section `.examples/dockerfiles/smtp` for further SMTP-settings
9 lines
No EOL
256 B
Docker
9 lines
No EOL
256 B
Docker
FROM friendica:apache
|
|
|
|
# simple = using an smtp without any credentials (mostly in local networks)
|
|
# custom = you need to set host, port, auth_options, authinfo (e.g. for GMX support)
|
|
ENV SMTP_TYPE simple
|
|
|
|
COPY *.sh /
|
|
RUN chmod +x /*.sh
|
|
RUN /smtp-config.sh |