mirror of
https://github.com/friendica/docker
synced 2025-01-06 06:07:47 +01:00
Philipp Holzer
0826aaefa9
- 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
17 lines
No EOL
367 B
Docker
17 lines
No EOL
367 B
Docker
FROM friendica:apache
|
|
|
|
ENV AUTOINSTALL true
|
|
ENV MARIADB_VERSION 10.3
|
|
|
|
RUN set -ex; \
|
|
; \
|
|
apt-get update; \
|
|
apt-get install -y --no-install-recommends \
|
|
supervisor \
|
|
; \
|
|
rm -rf /var/lib/apt/lists/*; \
|
|
mkdir /var/log/supervisord /var/run/supervisord
|
|
|
|
COPY ./supervisord.conf /etc/supervisor/supervisord.conf
|
|
|
|
CMD ["/usr/bin/supervisord"] |