website/docs: update docker provisioner

This commit is contained in:
Mitchell Hashimoto 2014-04-02 08:45:20 -07:00
parent af7a589231
commit 0fe3c9187e
1 changed files with 7 additions and 2 deletions

View File

@ -119,8 +119,13 @@ Vagrant.configure("2") do |config|
end
```
This will `docker run` a container with the "rabbitmq" image. In addition
to the name, the `run` method accepts a set of options, all optional:
This will `docker run` a container with the "rabbitmq" image. Note that
Vagrant uses the first parameter (the image name by default) to override any
settings used in a previous `run` definition. Therefore, if you need to run
multiple containers from the same image then you must specify the `image`
option (documented below) with a unique name.
In addition to the name, the `run` method accepts a set of options, all optional:
* `image` (string) - The image to run. This defaults to the first argument
but can also be given here as an option.