github.com/taylorchu/nomad@v0.5.3-rc1.0.20170407200202-db11e7dd7b55/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          }
    22      }
    23  }