We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7784e4 commit 8ccf254Copy full SHA for 8ccf254
scripts/itkdev-docker-compose
@@ -105,12 +105,12 @@ EOF
105
fi
106
}
107
108
-function enabledNFS {
+function enableNFS {
109
echo "Setting up nfs..."
110
U=`id -u`
111
G=`id -g`
112
113
- LINE="/Users -alldirs -mapall=$U:$G localhost"
+ LINE="/System/Volumes/Data/Users -alldirs -mapall=$U:$G localhost"
114
FILE=/etc/exports
115
sudo touch $FILE
116
grep -qF -- "$LINE" "$FILE" || sudo echo "$LINE" | sudo tee -a $FILE > /dev/null
@@ -268,7 +268,7 @@ fi
268
269
# Allow enabled NFS without existence of docker-compose.yml.
270
if [[ "$1" == "nfs:enable" ]]; then
271
- enabledNFS
+ enableNFS
272
exit
273
274
0 commit comments