Docker is your friend. The default MacOS filesystem is not!
Thank you Richard. This is very helpful
Here is a a CLI method to create the new MacOS volume
```bash
#!/bin/zsh
ImageName=linuxbuild
ImageNameExt=${ImageName}.sparseimage
diskutil umount force /Volumes/${ImageName} && true
rm -f ${ImageNameExt} && true
hdiutil create ${ImageName} -volname ${ImageName} -type SPARSE -size 12g -fs HFSX
hdiutil mount ${ImageNameExt}
cd /Volumes/$ImageName
```
Thank you Richard. This is very helpful
Here is a a CLI method to create the new MacOS volume
```bash
#!/bin/zsh
ImageName=linuxbuild
ImageNameExt=${ImageName}.sparseimage
diskutil umount force /Volumes/${ImageName} && true
rm -f ${ImageNameExt} && true
hdiutil create ${ImageName} -volname ${ImageName} -type SPARSE -size 12g -fs HFSX
hdiutil mount ${ImageNameExt}
cd /Volumes/$ImageName
```