Skip to content

Instantly share code, notes, and snippets.

View brian-tex's full-sized avatar

Brian brian-tex

View GitHub Profile
@computercam
computercam / nextcloud-docker-backup.sh
Last active January 15, 2025 08:22
docker nextcloud backup / restore
#!/usr/bin/env bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
TIMESTAMP=`date +"%Y-%m-%d-%T"`
BACKUP_DIR="${DIR}/${TIMESTAMP}"
APPDATA_DIR="${DIR}/../appdata"
MYSQL_USER="root"
MYSQL_PASSWORD="abc123"
MYSQL_DB="nextcloud_db"