mirror of
https://github.com/friendica/docker
synced 2026-01-02 13:03:34 +01:00
Improvements and Examples
- 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
This commit is contained in:
parent
57afa34813
commit
0826aaefa9
35 changed files with 434 additions and 26 deletions
|
|
@ -13,6 +13,8 @@ RUN set -ex; \
|
|||
bzip2 \
|
||||
busybox-static \
|
||||
git \
|
||||
# For mail() support
|
||||
sendmail \
|
||||
; \
|
||||
rm -rf /var/lib/apt/lists/*; \
|
||||
\
|
||||
|
|
@ -93,6 +95,10 @@ RUN a2enmod rewrite remoteip ;\
|
|||
} > /etc/apache2/conf-available/remoteip.conf;\
|
||||
a2enconf remoteip
|
||||
|
||||
RUN {\
|
||||
echo sendmail_path = "/usr/sbin/sendmail -t -i" ;\
|
||||
} > /usr/local/etc/php/conf.d/sendmail.ini;
|
||||
|
||||
ENV FRIENDICA_VERSION develop
|
||||
ENV ADDONS_VERSION develop
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue