Bug fix for the restore script. It now deletes the temp backup directories automatically.

This commit is contained in:
Scott Idem
2026-01-13 12:47:08 -05:00
parent ea45d99f13
commit 6297df094d
7 changed files with 90 additions and 7 deletions

View File

@@ -8,6 +8,8 @@
TZ=US/Eastern
OSIT_ENV=development
AE_LOG_LVL=warning
# Profiles: 'database' includes mariadb, phpmyadmin, ae_ops. Comment out or leave empty for app-only nodes.
COMPOSE_PROFILES=database
# Container Names
CONTAINER_WEB=ae_web_default
@@ -44,11 +46,19 @@ DOCKER_OSIT_SERVER_NAME=example-docker.oneskyit.com
# ------------------------------------------------------------------------------
# DATABASE SETTINGS (MariaDB)
# ------------------------------------------------------------------------------
# To use an external DB:
# 1. Set COMPOSE_PROFILES= (empty) in .env to disable local DB containers.
# 2. Set AE_DB_SERVER to the external IP/Hostname.
# 3. Ensure the external DB allows connections from this host.
# AE_DB_SERVER=HOSTNAME or IP_ADDRESS or "vpn-db.oneskyit.com"
AE_DB_SERVER=mariadb
AE_DB_PORT=3306
# Port to expose on the host if running local MariaDB (default 3306)
AE_DB_EXTERNAL_PORT=3306
AE_DB_NAME=aether_dev
AE_DB_USERNAME=osit_aether
AE_DB_PASSWORD="your-password-here"
AE_DB_ROOT_PASSWORD="mariadb-root-password-here"
# Connection Tuning
AE_DB_CONNECTION_TIMEOUT=15