labx / start_server.sh
frost-rolf's picture
Update start_server.sh
34e7f3f verified
raw
history blame contribute delete
No virus
1.24 kB
#!/bin/bash
start_server.sh: Starts JupyterLab
echo "Starting JupyterLab..."
JUPYTER_TOKEN="Civices01"
NOTEBOOK_DIR="/data"
# Change to the working directory
cd /data
# Start the JupyterLab server
jupyter-lab \
--ip 0.0.0.0 \
--port 7860 \
--no-browser \
--allow-root \
--ServerApp.token="$JUPYTER_TOKEN" \
--ServerApp.tornado_settings="{'headers': {'Content-Security-Policy': 'frame-ancestors *'}}" \
--ServerApp.cookie_options="{'SameSite': 'None', 'Secure': True}" \
--ServerApp.disable_check_xsrf=True \
--LabApp.news_url=None \
--LabApp.check_for_updates_class="jupyterlab.NeverCheckForUpdate" \
--notebook-dir=$NOTEBOOK_DIR
echo "JupyterLab has started."
#!/bin/bash
#JUPYTER_TOKEN="Civices01"
#NOTEBOOK_DIR="/data"
#jupyter-lab \
# --port 7860 \
# --no-browser \
# --allow-root \
# --ServerApp.token="$JUPYTER_TOKEN" \
# --ServerApp.tornado_settings="{'headers': {'Content-Security-Policy': 'frame-ancestors *'}}" \
# --ServerApp.cookie_options="{'SameSite': 'None', 'Secure': True}" \
# --ServerApp.disable_check_xsrf=True \
# --LabApp.news_url=None \
# --LabApp.check_for_updates_class="jupyterlab.NeverCheckForUpdate" \
# --notebook-dir=$NOTEBOOK_DIR