2022-04-15 19:11:41 +00:00
|
|
|
job "Nextcloud" {
|
|
|
|
schedule = "* * * * *"
|
|
|
|
|
|
|
|
config {
|
|
|
|
repo = "/local/repo"
|
|
|
|
# Read from secret file
|
|
|
|
# Either options.PasswordFile or using readfile()
|
2022-07-08 23:26:26 +00:00
|
|
|
# passphrase = "secret phrase"
|
|
|
|
passwordFile("tmp/passphrase")
|
2022-04-15 19:11:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
task "Create dir for repo" {
|
|
|
|
pre_script {
|
|
|
|
on_backup = "echo 'Backing up something'"
|
|
|
|
}
|
|
|
|
pre_script {
|
|
|
|
on_backup = "mkdir -p /local/repo"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mysql "Backup database" {
|
|
|
|
hostname = env("MYSQL_HOST")
|
|
|
|
port = env("MYSQL_PORT")
|
|
|
|
database = env("MYSQL_DATABASE")
|
|
|
|
username = env("MYSQL_USER")
|
|
|
|
password = env("MYSQL_PASSWORD")
|
|
|
|
no_tablespaces = true
|
|
|
|
dump_to = "/local/dump.sql"
|
|
|
|
}
|
|
|
|
|
|
|
|
backup {
|
|
|
|
paths = ["/data"]
|
|
|
|
|
|
|
|
restore_opts {
|
|
|
|
Target = "/"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
forget {
|
|
|
|
KeepLast = 2
|
|
|
|
Prune = true
|
|
|
|
}
|
|
|
|
}
|