2
0
Fork 0
mirror of https://github.com/friendica/docker synced 2024-06-28 09:13:35 +02:00
docker/stable/apache/entrypoint.sh
Philipp Holzer 0826aaefa9
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
2018-05-20 15:44:03 +02:00

9 lines
111 B
Bash

#!/bin/sh
set -eu
# Check if Friendica needs to get installed
friendica install
friendica sendmail
exec "$@"