Skip to content

Backup

Creating a backup copy of the installation

  1. Go to the directory with the startup files:
cd /path/to/docker-compose
  1. To create a backup, run the command:
docker-compose -p PROJECT_NAME run backup create

The backup file will be saved to the backup directory.

Restoring from a backup copy

  1. To restore from a backup copy, run the command:
docker-compose -p PROJECT_NAME run backup restore BACKUP_FILENAME

BACKUP_FILENAME is the name of the backup file. A list of available copies can be obtained by running the command:

ls -la ./backup
  1. Restart the installation:
docker-compose -p PROJECT_NAME up -d --force-recreate --renew-anon-volumes