From 7d73d4ca2266b672d1aaca924c015680fdb379da Mon Sep 17 00:00:00 2001 From: Tyron Date: Tue, 2 Jun 2020 12:52:28 -0400 Subject: [PATCH] added missing parameter to docker run command Sample docker run command was missing the -v (--volume) parameter on the sample code --- docs/user_doc/vic_vsphere_admin/volume_stores.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user_doc/vic_vsphere_admin/volume_stores.md b/docs/user_doc/vic_vsphere_admin/volume_stores.md index 343c80be62..a78e829f08 100644 --- a/docs/user_doc/vic_vsphere_admin/volume_stores.md +++ b/docs/user_doc/vic_vsphere_admin/volume_stores.md @@ -82,7 +82,7 @@ ERROR op=363.7: dial tcp nfs_server:111: getsockopt: connection refused After you deploy a VCH, you can test that an NFS share point is configured correctly so that containers can access it by running the following commands:
docker volume create --name test --opt VolumeStore=nfs
-docker run -it test:/mnt/test alpine /bin/ash
+docker run -it -v test:/mnt/test alpine /bin/ash You can also test the configuration mounting the NFS share point directly in the VCH endpoint VM. For information about how to perform this test, see [Install Packages in the Virtual Container Host Endpoint VM](vch_install_packages.md) and [Mount an NFS Share Point in the VCH Endpoint VM](vch_mount_nfsshare.md). @@ -187,4 +187,4 @@ This example `vic-machine create` command deploys a VCH with 3 volume stores: ## Troubleshooting -VCHs require datastores to be writable. For information about how to check whether a shared NFS datastore is possibly mounted as read-only, see [VCH Deployment with a Shared NFS Datastore Fails with an Error About No Single Host Being Able to Access All Datastores](ts_datastore_access_error.md). \ No newline at end of file +VCHs require datastores to be writable. For information about how to check whether a shared NFS datastore is possibly mounted as read-only, see [VCH Deployment with a Shared NFS Datastore Fails with an Error About No Single Host Being Able to Access All Datastores](ts_datastore_access_error.md).