From 5ae5690d66207db72e8a2c50def69c221d83aea2 Mon Sep 17 00:00:00 2001 From: Dharma Bellamkonda Date: Fri, 28 Nov 2014 12:59:20 -0700 Subject: [PATCH] clarify documentation of docker.link() --- website/docs/source/v2/docker/configuration.html.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/website/docs/source/v2/docker/configuration.html.md b/website/docs/source/v2/docker/configuration.html.md index a8dfed3c7..73bde2df3 100644 --- a/website/docs/source/v2/docker/configuration.html.md +++ b/website/docs/source/v2/docker/configuration.html.md @@ -36,7 +36,8 @@ General settings: but not to the host machine. Useful for links. * `link` (method, string argument) - Link this container to another - by name. Example: `docker.link("db:db")`. Note, if you're linking to + by name. The argument should be in the format of `(name:alias)`. + Example: `docker.link("db:db")`. Note, if you're linking to another container in the same Vagrantfile, make sure you call `vagrant up` with the `--no-parallel` flag.