fix for jupyterlab on cloud start (#1594)
Browse files
scripts/cloud-entrypoint.sh
CHANGED
@@ -33,7 +33,7 @@ fi
|
|
33 |
|
34 |
if [ "$JUPYTER_DISABLE" != "1" ]; then
|
35 |
# Run Jupyter Lab in the background
|
36 |
-
jupyter lab --port=8888 --ip=* --allow-root --ServerApp.allow_origin=*
|
37 |
fi
|
38 |
|
39 |
# Execute the passed arguments (CMD)
|
|
|
33 |
|
34 |
if [ "$JUPYTER_DISABLE" != "1" ]; then
|
35 |
# Run Jupyter Lab in the background
|
36 |
+
jupyter lab --port=8888 --ip=* --allow-root --ServerApp.allow_origin=* &
|
37 |
fi
|
38 |
|
39 |
# Execute the passed arguments (CMD)
|