mirror of https://github.com/docker/docs.git
Document virtualbox-share-folder switch of docker-machine virtual box… (#647)
* Document virtualbox-share-folder switch of docker-machine virtual box driver * Add --virtualbox-share-folder to the fefaults table too * Updated wording for virtualbox-share-folder * Update virtualbox.md
This commit is contained in:
parent
d9a5c2666a
commit
c717eb71f7
|
@ -37,6 +37,7 @@ The size of the VM's disk can be configured this way:
|
|||
- `--virtualbox-no-share`: Disable the mount of your home directory
|
||||
- `--virtualbox-no-dns-proxy`: Disable proxying all DNS requests to the host (Boolean value, default to false)
|
||||
- `--virtualbox-no-vtx-check`: Disable checking for the availability of hardware virtualization before the vm is started
|
||||
- `--virtualbox-share-folder`: Mount the specified directory instead of the default home location. Format: `dir:name`
|
||||
|
||||
The `--virtualbox-boot2docker-url` flag takes a few different forms. By
|
||||
default, if no value is specified for this flag, Machine will check locally for
|
||||
|
@ -80,6 +81,7 @@ upper bound of `192.168.24.254`.
|
|||
| `--virtualbox-no-share` | `VIRTUALBOX_NO_SHARE` | `false` |
|
||||
| `--virtualbox-no-dns-proxy` | `VIRTUALBOX_NO_DNS_PROXY` | `false` |
|
||||
| `--virtualbox-no-vtx-check` | `VIRTUALBOX_NO_VTX_CHECK` | `false` |
|
||||
| `--virtualbox-share-folder` | `VIRTUALBOX_SHARE_FOLDER` | `~:users` |
|
||||
|
||||
## Known Issues
|
||||
|
||||
|
@ -89,4 +91,4 @@ contents.
|
|||
|
||||
This will often cause problems when using a web server such as nginx to serve
|
||||
static files from a shared volume. For development environments, a good
|
||||
workaround is to disable sendfile in your server configuration.
|
||||
workaround is to disable sendfile in your server configuration.
|
||||
|
|
Loading…
Reference in New Issue