Skip to content

Instantly share code, notes, and snippets.

@schmichael
Created April 7, 2022 23:34
Show Gist options
  • Save schmichael/6f05b45be3041f1ab11e946ffcad36e2 to your computer and use it in GitHub Desktop.
Save schmichael/6f05b45be3041f1ab11e946ffcad36e2 to your computer and use it in GitHub Desktop.
job "sysinfo" {
datacenters = ["dc1"]
type = "batch"
group "sysinfo" {
task "sysinfo" {
driver = "docker"
config {
// Windows 2019
image = "mcr.microsoft.com/windows/nanoserver:1809"
command = "powershell.exe"
args = ["-c", "Get-ComputerInfo"]
// args = ["-c", "Start-Sleep 3600"]
}
resources {
cpu = 500
memory = 256
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment