CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
adasegroup

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: adasegroup/NEUROML2022
Path: blob/main/seminar2/entrypoint.sh
Views: 63
1
#! /bin/bash
2
3
printf 'Neurodocker startup - success\n'
4
5
source $FREESURFER_HOME/SetUpFreeSurfer.sh
6
7
printf 'FREESURFER - check\n'
8
9
#./opt/miniconda-latest/envs/neuro/bin/jupyter-lab --ip=0.0.0.0 --port=8080 --no-browser --allow-root --notebook-dir='/workspace' --NotebookApp.token=''
10
./opt/miniconda-latest/envs/neuro/bin/jupyter notebook --ip=0.0.0.0 --port=8080 --no-browser --allow-root --notebook-dir='/workspace' --NotebookApp.token=''
11
12