github.com/dkerwin/nomad@v0.3.3-0.20160525181927-74554135514b/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              }
    10  
    11              artifact {
    12                  source = "http://foo.com/baz"
    13              }
    14              artifact {
    15                  source = "http://foo.com/bam"
    16                  destination = "var/foo"
    17              }
    18              resources {}
    19          }
    20      }
    21  }