Add example docker load config

This commit is contained in:
Michael Schurter 2016-10-07 16:19:05 -07:00
parent f0173b361f
commit 4a8dcf7e85
1 changed files with 10 additions and 0 deletions

View File

@ -47,6 +47,16 @@ The `docker` driver supports the following configuration in the job spec:
download each of the archive files. The equivalent of `docker load -i path`
would be run on each of the archive files.
```hcl
artifact {
source = "http://path.to/redis.tar"
}
config {
load = ["redis.tar"]
image = "redis"
}
````
* `command` - (Optional) The command to run when starting the container.
```hcl