budibase email account

This commit is contained in:
Sönke Domröse
2025-04-30 16:30:29 +02:00
parent d9c6b8062f
commit a19809a51f
2 changed files with 6 additions and 2 deletions

View File

@@ -25,7 +25,11 @@ SQL_MAX_ROWS=
# An admin user can be automatically created initially if these are set # An admin user can be automatically created initially if these are set
BB_ADMIN_USER_EMAIL=soenke@domroese.eu BB_ADMIN_USER_EMAIL=soenke@domroese.eu
BB_ADMIN_USER_PASSWORD=Diavid9600 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/ # A path that is watched for plugin bundles. Any bundles found are imported automatically/
PLUGINS_DIR= PLUGINS_DIR=
ROLLING_LOG_MAX_SIZE= ROLLING_LOG_MAX_SIZE=

View File

@@ -1,5 +1,5 @@
for dir in *; do for dir in *; do
if [ -d "$dir" ]; then 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 fi
done done