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

@@ -54,6 +54,7 @@ services:
restart: always
image: mariadb:10.11
container_name: ae_mariadb_dev
profiles: ["database"]
command: [
"mysqld",
"--max-connections=${MARIADB_MAX_CONNECTIONS}",
@@ -68,6 +69,8 @@ services:
MYSQL_DATABASE: ${AE_DB_NAME}
MYSQL_USER: ${AE_DB_USERNAME}
MYSQL_PASSWORD: ${AE_DB_PASSWORD}
ports:
- "${AE_DB_EXTERNAL_PORT}:3306"
volumes:
- ./srv/mariadb:/var/lib/mysql
- ./conf/mariadb/server.cnf:/etc/mysql/conf.d/server.cnf
@@ -81,6 +84,7 @@ services:
restart: always
image: phpmyadmin/phpmyadmin
container_name: ae_pma_dev
profiles: ["database"]
environment:
PMA_HOST: mariadb
UPLOAD_LIMIT: 64M
@@ -120,7 +124,6 @@ services:
- ./temp/ae_api:/temp
depends_on:
- redis
- mariadb
stdin_open: true
tty: true
logging:
@@ -129,6 +132,8 @@ services:
max-size: "10m"
max-file: "3"
# *Legacy* Aether Flask Application served with Gunicorn
# *NOTE:* This legacy frontend using Flask is being replaced by the new one using SvelteKit.
aether_app_gunicorn:
# ... (same as before) ...
restart: always
@@ -182,6 +187,7 @@ services:
container_name: ae_ops_dev
image: alpine:latest
restart: always
profiles: ["database"]
env_file:
- ./.env
volumes: