From 120b809465ba668fed16952937cb4edec34948b0 Mon Sep 17 00:00:00 2001 From: Wing Lian Date: Sun, 5 May 2024 10:08:43 -0400 Subject: [PATCH] fix for jupyterlab on cloud start (#1594) --- scripts/cloud-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/cloud-entrypoint.sh b/scripts/cloud-entrypoint.sh index c7b9ca3e0f..3a15a884aa 100755 --- a/scripts/cloud-entrypoint.sh +++ b/scripts/cloud-entrypoint.sh @@ -33,7 +33,7 @@ fi if [ "$JUPYTER_DISABLE" != "1" ]; then # Run Jupyter Lab in the background - jupyter lab --port=8888 --ip=* --allow-root --ServerApp.allow_origin=* --ServerApp.preferred_dir=/workspace & + jupyter lab --port=8888 --ip=* --allow-root --ServerApp.allow_origin=* & fi # Execute the passed arguments (CMD)