makes known use mail from ENV

This commit is contained in:
pierreozoux 2015-07-15 15:56:56 +01:00
parent cfd79e9358
commit 125b76e463

View file

@ -74,8 +74,10 @@ echo "dbhost = '${DB_HOST}'" >> /app/config.ini
echo "dbuser = '${DB_USER}'" >> /app/config.ini
echo "dbpass = '${DB_PASS}'" >> /app/config.ini
echo "url = 'https://${URL}/'" >> /app/config.ini
echo "smtp_host = 172.17.42.1" >> /app/config.ini
echo "smtp_port = 25" >> /app/config.ini
echo "smtp_host = ${MAIL_HOST}" >> /app/config.ini
echo "smtp_port = ${MAIL_PORT}" >> /app/config.ini
echo "smtp_username = ${MAIL_USER}" >> /app/config.ini
echo "smtp_password = ${MAIL_PASS}" >> /app/config.ini
exec /run.sh