github.com/maier/nomad@v0.4.1-0.20161110003312-a9e3d0b8549d/jobspec/test-fixtures/artifacts.hcl (about)

     1  job "binstore-storagelocker" {
     2      group "binsl" {
     3          task "binstore" {
     4              driver = "docker"
     5  
     6              artifact {
     7                  source = "http://foo.com/bar"
     8                  destination = ""
     9                  options {
    10                      foo = "bar"
    11                  }
    12              }
    13  
    14              artifact {
    15                  source = "http://foo.com/baz"
    16              }
    17              artifact {
    18                  source = "http://foo.com/bam"
    19                  destination = "var/foo"
    20              }
    21              resources {}
    22          }
    23      }
    24  }