๐ The complete installation guide is available on my website.
โ Change variables in the .env
to meet your requirements.
๐ก Note that the .env
file should be in the same directory as nextcloud-traefik-letsencrypt-docker-compose.yml
.
Create networks for your services before deploying the configuration using the commands:
docker network create traefik-network
docker network create nextcloud-network
Deploy Nextcloud using Docker Compose:
docker compose -f nextcloud-traefik-letsencrypt-docker-compose.yml -p nextcloud up -d
The backups
container in the configuration is responsible for the following:
-
Database Backup: Creates compressed backups of the PostgreSQL database using pg_dump. Customizable backup path, filename pattern, and schedule through variables like
POSTGRES_BACKUPS_PATH
,POSTGRES_BACKUP_NAME
, andBACKUP_INTERVAL
. -
Application Data Backup: Compresses and stores backups of the application data on the same schedule. Controlled via variables such as
DATA_BACKUPS_PATH
,DATA_BACKUP_NAME
, andBACKUP_INTERVAL
. -
Backup Pruning: Periodically removes backups exceeding a specified age to manage storage. Customizable pruning schedule and age threshold with
POSTGRES_BACKUP_PRUNE_DAYS
andDATA_BACKUP_PRUNE_DAYS
.
By utilizing this container, consistent and automated backups of the essential components of your instance are ensured. Moreover, efficient management of backup storage and tailored backup routines can be achieved through easy and flexible configuration using environment variables.
This script facilitates the restoration of a database backup:
-
Identify Containers: It first identifies the service and backups containers by name, finding the appropriate container IDs.
-
List Backups: Displays all available database backups located at the specified backup path.
-
Select Backup: Prompts the user to copy and paste the desired backup name from the list to restore the database.
-
Stop Service: Temporarily stops the service to ensure data consistency during restoration.
-
Restore Database: Executes a sequence of commands to drop the current database, create a new one, and restore it from the selected compressed backup file.
-
Start Service: Restarts the service after the restoration is completed.
To make the nextcloud-restore-database.shh
script executable, run the following command:
chmod +x nextcloud-restore-database.sh
Usage of this script ensures a controlled and guided process to restore the database from an existing backup.
This script is designed to restore the application data:
-
Identify Containers: Similarly to the database restore script, it identifies the service and backups containers by name.
-
List Application Data Backups: Displays all available application data backups at the specified backup path.
-
Select Backup: Asks the user to copy and paste the desired backup name for application data restoration.
-
Stop Service: Stops the service to prevent any conflicts during the restore process.
-
Restore Application Data: Removes the current application data and then extracts the selected backup to the appropriate application data path.
-
Start Service: Restarts the service after the application data has been successfully restored.
To make the nextcloud-restore-application-data.sh
script executable, run the following command:
chmod +x nextcloud-restore-application-data.sh
By utilizing this script, you can efficiently restore application data from an existing backup while ensuring proper coordination with the running service.
Iโm Vladimir Mikhalev, the Docker Captain, but my friends can call me Valdemar.
๐ My website with detailed IT guides
๐ฌ Follow me on YouTube
๐ฆ Follow me on Twitter
๐จ Follow me on Instagram
๐งต Follow me on Threads
๐ Follow me on Mastodon
๐ง Follow me on Bluesky
๐ธ Follow me on Facebook
๐ฅ Follow me on TikTok
๐ป Follow me on LinkedIn
๐ Follow me on GitHub
๐พ Chat with IT pros on Discord
๐ง Reach me at ask@sre.gg
๐ Support on GitHub
๐ Support on Patreon
๐ฅค Support on BuyMeaCoffee
๐ช Support on Ko-fi
๐ Support on PayPal