chore: backup infrastructure configurations [skip ci]

This commit is contained in:
github-actions[bot]
2025-11-22 17:50:56 +00:00
parent a2d70e1d5d
commit 2b7e5ef040
6 changed files with 414 additions and 2 deletions

View File

@@ -0,0 +1,30 @@
job "qbitcheck" {
datacenters = ["dc1"]
type = "service"
group "qbitcheck" {
count = 1
task "qbitcheck" {
driver = "docker"
config {
image = "gitea.service.dc1.fbleagh.duckdns.org/sstent/qbitcheck:latest"
force_pull = true
}
resources {
cpu = 100 # 100 MHz
memory = 128 # 128 MB
}
restart {
attempts = 10
interval = "5m"
delay = "25s"
mode = "delay"
}
}
}
}