diff --git a/website/source/docs/drivers/docker.html.md b/website/source/docs/drivers/docker.html.md index 9aef66748..c3125630b 100644 --- a/website/source/docs/drivers/docker.html.md +++ b/website/source/docs/drivers/docker.html.md @@ -173,7 +173,7 @@ task "redis" { config { image = "redis" port_map { - redis = "6379" + redis = 6379 } } } diff --git a/website/source/docs/jobspec/networking.html.md b/website/source/docs/jobspec/networking.html.md index 7894ed8ca..ee65d7cfd 100644 --- a/website/source/docs/jobspec/networking.html.md +++ b/website/source/docs/jobspec/networking.html.md @@ -57,7 +57,7 @@ place your task. ``` task "dnsservice" { port "dns" { - static = "53" + static = 53 } } ``` @@ -106,4 +106,4 @@ The above example is for the Docker driver. The service is listening on port `8080` inside the container. The driver will automatically map the dynamic port to this service. -Please refer to the [Docker](/docs/drivers/docker.html) and [QEMU](/docs/drivers/qemu.html) drivers for additional information. \ No newline at end of file +Please refer to the [Docker](/docs/drivers/docker.html) and [QEMU](/docs/drivers/qemu.html) drivers for additional information.