dockerplayground / start_server.sh
nateraw's picture
Update start_server.sh
da56c03
raw
history blame contribute delete
407 Bytes
#!/bin/bash
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.disable_check_xsrf=True \
--ServerApp.cookie_options="{'SameSite': 'None', 'Secure': True}"