mirror of
https://github.com/kemko/nomad.git
synced 2026-01-07 19:05:42 +03:00
18 lines
307 B
HCL
18 lines
307 B
HCL
//e2e:service script=validate.sh
|
|
job "networking" {
|
|
datacenters = ["nick-east-1"]
|
|
group "basic" {
|
|
network {
|
|
mode = "bridge"
|
|
}
|
|
|
|
task "sleep" {
|
|
driver = "docker"
|
|
config {
|
|
image = "busybox:1"
|
|
command = "/bin/sleep"
|
|
args = ["5"]
|
|
}
|
|
}
|
|
}
|
|
} |