Last active
August 11, 2021 22:25
-
-
Save schmichael/7122ad834b2b33c5a2a4eef35de04d3a to your computer and use it in GitHub Desktop.
Simple Nomad Hello World Job
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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