This file contains 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
# Python Rclone Script with Telegram and InfluxDB Reporting | |
# - This Script backups your data to any rclone location (see rclone.org) | |
# - You can execute scripts, commands and database dumps before running a single rclone command | |
# - It sends automatic error reports and summaries | |
# - It saves all statistics and operations to an Influx database | |
# - The data can be used for visualizations in e.g. Grafana | |
# - You can automate it by using cron | |
# Created by: Luca Koroll - https://github.com/lucanello | |
# Last update: 2021-07-04 |
This file contains 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/sh | |
docker build -t savify:dev -f dev.Dockerfile . |