cluster-state/modules/plextraktsync/jobspec.nomad.hcl
Renovate Bot af8b134805
Some checks failed
Terraform CI/CD / Terraform Format, Validate, Lint, Scan (pull_request) Failing after 2m13s
Terraform CI/CD / Terraform Plan (pull_request) Has been skipped
Terraform CI/CD / Terraform Apply (pull_request) Has been skipped
Terraform CI/CD / Terraform Format, Validate, Lint, Scan (push) Failing after 1m2s
Terraform CI/CD / Terraform Plan (push) Has been skipped
Terraform CI/CD / Terraform Apply (push) Has been skipped
chore(deps): update ghcr.io/taxel/plextraktsync docker tag to v0.34.9
2025-05-05 18:02:35 +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.9"
volumes = [
"/mnt/docker/downloads/config/plextraktsync:/app/config"
]
command = "sync"
}
resources {
cpu = 2000
memory = 128
}
}
}
}