Jupyter lab ip is bound to 0.0.0.0 (fix Dockerfile)

This commit is contained in:
saundersp 2024-06-09 15:45:27 +02:00
parent 9a08c7b4c6
commit 7244d265fa

View File

@ -80,7 +80,7 @@ case "$1" in
l|-l|launch|--launch) l|-l|launch|--launch)
enable_venv "$2" enable_venv "$2"
if command -v jupyter >> /dev/null; then if command -v jupyter >> /dev/null; then
exec jupyter lab --ServerApp.iopub_data_rate_limit 1e16 exec jupyter lab --ip 0.0.0.0 --ServerApp.iopub_data_rate_limit 1e16
else else
echo "Jupyter lab isn't installed" echo "Jupyter lab isn't installed"
exit 1 exit 1