mirror of
https://github.com/friendica/docker
synced 2025-01-24 03:47:32 +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
8 lines
111 B
Bash
8 lines
111 B
Bash
#!/bin/sh
|
|
set -eu
|
|
|
|
# Check if Friendica needs to get installed
|
|
friendica install
|
|
friendica sendmail
|
|
|
|
exec "$@"
|