initital upload

This commit is contained in:
2018-11-20 09:38:08 +01:00
commit 60dd031fa6
14 changed files with 242 additions and 0 deletions

11
backup Normal file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
#Creates a backup of all Docker-Volumes and pushes them to G-Drive
#
cd /Docker
for verz in $(ls -d1)
do
tar -cvzf $verz.tar.gz $verz
done
rclone move /Docker/*.tar.gz gdrive:/Backup --verbose --transfers 4 --checkers 20 --stats 10s