You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just tried the eessi_container.sh script on a system configured to use apptainer and with $APPTAINER_BIND defined instead of $SINGULARITY_BIND, got WARNING: SINGULARITY_BIND and APPTAINER_BIND have different values, using the latter, and then the EESSI paths were not bind mounted
This is because the script defines $SINGULARITY_BIND without taking into account $APPTAINER_BIND, so then both of them are set and are different
I simply replaced $SINGULARITY_BIND with $APPTAINER_BIND in the script and then it worked fine, but looks like more generically the script will need to take into account multiple scenarios
The text was updated successfully, but these errors were encountered:
I just tried the
eessi_container.sh
script on a system configured to use apptainer and with$APPTAINER_BIND
defined instead of$SINGULARITY_BIND
, gotWARNING: SINGULARITY_BIND and APPTAINER_BIND have different values, using the latter
, and then the EESSI paths were not bind mountedThis is because the script defines
$SINGULARITY_BIND
without taking into account$APPTAINER_BIND
, so then both of them are set and are differentsoftware-layer/eessi_container.sh
Lines 822 to 827 in 161a284
I simply replaced
$SINGULARITY_BIND
with$APPTAINER_BIND
in the script and then it worked fine, but looks like more generically the script will need to take into account multiple scenariosThe text was updated successfully, but these errors were encountered: