This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -eu | |
| export BORG_REPO='wp:/root/borgbackup' | |
| export BORG_PASSPHRASE='[password here]' | |
| export BORG_REMOTE_PATH=/usr/bin/borg | |
| /usr/bin/borg create -s --list --filter=AME ::working-$(date +%F-%T) /path/to/backup/path |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| docker-machine create \ | |
| --driver virtualbox \ | |
| --virtualbox-cpu-count "4" \ | |
| --virtualbox-memory "4000" \ | |
| --virtualbox-no-vtx-check \ | |
| default |
NewerOlder