如果内部脚本引发错误,请避免停止 docker 容器

如果内部脚本引发错误,请避免停止 docker 容器

我试图避免 docker 内部脚本的失败级联,它在命令上失败( echo time fmriprep),并从 docker 容器退出,我希望它忽略此命令上的错误并继续input=/tmp/preproc/fmriprep && \。这是脚本:

if [ ! -f "/input/preproc/fmriprep/sub-"${subject_id}".html" ]
    then
    ( echo `time fmriprep /input/BIDS /tmp/preproc participant --skip-bids-validation --fs-license-file /opt/freesurfer/license.txt --ignore fieldmaps --fs-no-reconall --use-aroma --force-bbr --participant_label $subject_id -w /tmp/preproc || true` ) && \
    cp -r /tmp/preproc /input &
else
        mkdir -p /tmp/preproc/fmriprep
        cp -r /input/preproc/fmriprep/sub-${subject_id}/ /tmp/preproc/fmriprep
fi && \
    input=/tmp/preproc/fmriprep && \

我尝试添加|| true,但没有帮助

相关内容