diff --git a/budibase/.env b/budibase/.env index 1cd5b5e..4ce4d52 100644 --- a/budibase/.env +++ b/budibase/.env @@ -25,7 +25,11 @@ SQL_MAX_ROWS= # An admin user can be automatically created initially if these are set BB_ADMIN_USER_EMAIL=soenke@domroese.eu BB_ADMIN_USER_PASSWORD=Diavid9600 - +SMTP_USER=mail@domroese.eu +SMTP_PASSWORD=aiVLNjATdm3CyLSCfjNhz4RPqpkvch +SMTP_HOST=pro1.mail.ovh.net +SMTP_PORT=587 +SMTP_FROM_ADDRESS # A path that is watched for plugin bundles. Any bundles found are imported automatically/ PLUGINS_DIR= ROLLING_LOG_MAX_SIZE= diff --git a/restartall.sh b/restartall.sh index 7261659..1bbae66 100755 --- a/restartall.sh +++ b/restartall.sh @@ -1,5 +1,5 @@ for dir in *; do if [ -d "$dir" ]; then - ( cd "$dir" && docker compose down && docker compose pull && docker compose up -d ) + ( cd "$dir" && docker compose pull && docker compose down && docker compose up -d ) fi done