File size: 749 Bytes
81b7763
b1a445a
 
 
e1dfb43
81b7763
879101c
87ba108
879101c
e1dfb43
81b7763
 
879101c
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/bash

cd /data

JUPYTER_TOKEN="${JUPYTER_TOKEN:= huggingface}"

NOTEBOOK_DIR="/data"

jupyter labextension disable "@jupyterlab/apputils-extension:announcements"
jupyter server extension disable jupyterlab_proxy_gui

jupyter-lab \
    --ip 0.0.0.0 \
    --port 7860 \
    --no-browser \
    --allow-root \
    --ServerApp.token="$JUPYTER_TOKEN" \
    --IdentityProvider.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