Right now on MacOS the bash script will not allow files to be mounted as readlink -f does not work on MacOS. This SO kind of gets at this. This SO is better
The following needs to be edited to allow file mounting across Linux and Mac.
|
VDAT_FULL_PATH=$(readlink -f "vdat.exe") |
|
THINGS_TO_MOUNT="-v ${PWD}/vdat_out:/VDAT/vdat_out -v $(readlink -f $3):/VDAT/$(basename $3)" |
|
THINGS_TO_MOUNT="-v $(readlink -f $2):/VDAT/$(basename $2)" |
Right now on MacOS the bash script will not allow files to be mounted as
readlink -fdoes not work on MacOS. This SO kind of gets at this. This SO is betterThe following needs to be edited to allow file mounting across Linux and Mac.
vdat-docker/vdat.sh
Line 48 in 262ab27
vdat-docker/vdat.sh
Line 64 in 262ab27
vdat-docker/vdat.sh
Line 75 in 262ab27