cluster-state/modules/plextraktsync/jobspec.nomad.hcl
Renovate Bot eecd4bded3
All checks were successful
Terraform CI/CD / Terraform Format, Validate, Lint, Scan (pull_request) Successful in 1m21s
Terraform CI/CD / Terraform Plan (pull_request) Successful in 48s
Terraform CI/CD / Terraform Apply (pull_request) Has been skipped
Terraform CI/CD / Terraform Format, Validate, Lint, Scan (push) Successful in 1m15s
Terraform CI/CD / Terraform Plan (push) Has been skipped
Terraform CI/CD / Terraform Apply (push) Successful in 46s
chore(deps): update ghcr.io/taxel/plextraktsync docker tag to v0.34.11
2025-06-09 10:02:09 +00:00

28 lines
485 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.11"
volumes = [
"/mnt/docker/downloads/config/plextraktsync:/app/config"
]
command = "sync"
}
resources {
cpu = 2000
memory = 128
}
}
}
}