fix(databasus): add logging limits and final report entry

completes databasus rebrand by adding missing pieces:
- log rotation (1mb max) to prevent disk bloat
- post-install instructions for account setup
This commit is contained in:
Yury Kossakovsky
2025-12-28 11:34:38 -07:00
parent 37b696ac14
commit e1abdfecd8
2 changed files with 8 additions and 0 deletions

View File

@@ -843,6 +843,11 @@ services:
container_name: databasus
profiles: ["databasus"]
restart: unless-stopped
logging:
driver: "json-file"
options:
max-size: "1m"
max-file: "1"
volumes:
- databasus_data:/databasus-data
healthcheck:

View File

@@ -85,6 +85,9 @@ fi
if is_profile_active "portainer"; then
echo -e " ${GREEN}*${NC} ${WHITE}Portainer${NC}: Create admin account on first login"
fi
if is_profile_active "databasus"; then
echo -e " ${GREEN}*${NC} ${WHITE}Databasus${NC}: Create account and configure backup schedules"
fi
if is_profile_active "flowise"; then
echo -e " ${GREEN}*${NC} ${WHITE}Flowise${NC}: Register and create your account"
fi