wordpress/entrypoint.mailrelay.sh.tmpl

8 lines
232 B
Cheetah
Raw Normal View History

2020-09-26 18:31:13 +00:00
#!/bin/bash
apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y msmtp && rm -rf /var/lib/apt/lists/*
2020-09-27 19:27:08 +00:00
echo "sendmail_path = /usr/bin/msmtp -t -i" > /usr/local/etc/php/conf.d/sendmail.ini
2020-09-26 18:31:13 +00:00
2020-10-23 02:06:26 +00:00
/docker-entrypoint.sh "$@"