Skip to content
Snippets Groups Projects

Removed password req when accessing new jupyter

Merged Sherjeel Shabih requested to merge no-password-req-for-jupyter into develop
All threads resolved!
1 file
+ 4
1
Compare changes
  • Side-by-side
  • Inline
@@ -121,7 +121,10 @@ async def post_instances(request: Request, instance: InstanceModel, current_user
docker_client.containers.run(
image="jupyter/datascience-notebook",
command=f'start-notebook.sh --NotebookApp.base_url={path}',
command=(
f'start-notebook.sh --NotebookApp.base_url={path}'
' --NotebookApp.token="" --NotebookApp.password=""'
),
ports={"8888": int(f'1000{channel}')},
detach=True,
name=container_name,
Loading