mirror of
https://github.com/kossakovsky/n8n-install.git
synced 2026-03-07 14:23:08 +00:00
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:
@@ -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:
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user