cluster-state/modules/plextraktsync/jobspec.nomad.hcl
Renovate Bot b289f6e600
All checks were successful
Lint / lint (pull_request) Successful in 1m3s
Terraform Plan and Apply / cicd (pull_request) Successful in 2m5s
Lint / lint (push) Successful in 53s
Terraform Plan and Apply / cicd (push) Successful in 1m35s
chore(deps): update ghcr.io/taxel/plextraktsync docker tag to v0.34.3
2025-02-21 04:03:13 +00:00

28 lines
484 B
HCL

job "plextraktsync" {
type = "batch"
periodic {
crons = ["0 0/2 * * *"]
prohibit_overlap = true
}
group "plextraktsync" {
task "plextraktsync" {
driver = "docker"
config {
image = "ghcr.io/taxel/plextraktsync:0.34.3"
volumes = [
"/mnt/docker/downloads/config/plextraktsync:/app/config"
]
command = "sync"
}
resources {
cpu = 2000
memory = 128
}
}
}
}