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
28 lines
485 B
HCL
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
|
|
}
|
|
}
|
|
}
|
|
}
|