The following docker command creates a container to backup your volume into sftp://[email protected]:/backup
docker run -e "BACKUP_NOW=yes" \
-e "HOST_USER=backup" \
-e "HOST_NAME=mybackupserver.mydomain.com" \
-e "HOST_DIR=/backup"
-v volume_to_backup:/backup
-v password_file:/ssh.pass
--name sftp-backup
fradelg/sftp-backup
/ssh.pass: the file with your server pass stored as plain text. It will be erased after creating the container/backup: the directory that contains the files to backup into the remote server/root/.ssh: the SSH keys of the user to connect with the backup remote hostBACKUP_NOW: does the container perform a complete backup after creation? (it will take a while)HOST_USER: the username of the backup account in the serverHOST_NAME: the hostname or IP of the backup serverHOST_PORT: the port where SFTP is listening on the backup serverHOST_DIR: the path of the backup to which the backup will be savedEXCLUDE: the file patterns to exclude from rsync (single space separated)CRON_TIME: the crontab time pattern for executing the backup (default: 0 0 * * 7)Content type
Image
Digest
Size
4 MB
Last updated
over 9 years ago
docker pull fradelg/srsync