Skip to content

Commit

Permalink
set nfsvers=3 as the default option (#92)
Browse files Browse the repository at this point in the history
fixes #91
  • Loading branch information
paolomainardi authored and tonivdv committed Dec 11, 2018
1 parent d6c5b38 commit 4185822
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 4185822

Please sign in to comment.