diff --git a/website/source/docs/drivers/docker.html.md b/website/source/docs/drivers/docker.html.md index af59766c3..c8627519c 100644 --- a/website/source/docs/drivers/docker.html.md +++ b/website/source/docs/drivers/docker.html.md @@ -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