Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set nfsvers=3 as the default option #92

Merged
merged 2 commits into from
Dec 11, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker-machine-nfs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Options:
-f, --force Force reconfiguration of nfs
-n, --nfs-config NFS configuration to use in /etc/exports. (default to '-alldirs -mapall=\$(id -u):\$(id -g)')
-s, --shared-folder,... Folder to share (default to /Users)
-m, --mount-opts NFS mount options (default to 'noacl,async')
-m, --mount-opts NFS mount options (default to 'noacl,async,nfsvers=3')
-i, --use-ip-range Changes the nfs export ip to a range (e.g. -network 192.168.99.100 becomes -network 192.168.99)
-p, --ip Configures the docker-machine to connect to your host machine via a specific ip address
-t, --timeout Configures how long the timeout should be for docker-machine commands
Expand Down Expand Up @@ -135,7 +135,7 @@ setPropDefaults()
prop_machine_name=
prop_shared_folders=()
prop_nfs_config="-alldirs -mapall="$(id -u):$(id -g)
prop_mount_options="noacl,async"
prop_mount_options="noacl,async,nfsvers=3"
prop_force_configuration_nfs=false
prop_use_ip_range=false
prop_timeout=
Expand Down