Skip to content

Instantly share code, notes, and snippets.

@schmichael
Last active August 11, 2021 22:25
Show Gist options
  • Save schmichael/7122ad834b2b33c5a2a4eef35de04d3a to your computer and use it in GitHub Desktop.
Save schmichael/7122ad834b2b33c5a2a4eef35de04d3a to your computer and use it in GitHub Desktop.
Simple Nomad Hello World Job
job "example" {
datacenters = ["dc1"]
group "hello" {
task "hello" {
driver = "docker"
config {
image = "redis:3.2"
command = "/bin/bash"
args = ["-c", "echo 'Hello World!' && sleep infinity"]
}
resources {
cpu = 2
memory = 20
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment