File size: 988 Bytes
89e5b6e
 
89573be
5ea6864
 
f1f040a
 
 
4c4b366
89e5b6e
 
 
 
 
 
 
 
 
 
1cc9152
b280e56
4c4b366
 
 
08d6c7d
 
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
26
#!/bin/bash

# code --install-extension ms-toolsai.jupyter ms-toolsai.jupyter
# https://az764295.vo.msecnd.net/insider/35419fc016b8d3d5dbc59aa11a0be957b0897309/code-insiders_1.84.0-1698404571_amd64.deb
# https://code.visualstudio.com/sha/download?build=stable&os=cli-alpine-x64
JUPYTER_TOKEN="${JUPYTER_TOKEN:=huggingface}"  

echo "Starting Jupyter Lab with token $JUPYTER_TOKEN"

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" \
    --NotebookApp.allow_origin='*'
    --ServerApp.password='password123' & \
    disown

# code-insiders tunnel --no-sleep \
#     --accept-server-license-terms