From 6fa279bd152d701385d3ffcf23fee474df53f8a7 Mon Sep 17 00:00:00 2001 From: Jonas Waeber <jonas.waeber@unibas.ch> Date: Thu, 6 Feb 2025 17:02:34 +0100 Subject: [PATCH] try fixes --- jupyterhub_config.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/jupyterhub_config.py b/jupyterhub_config.py index 8319c0c..7116094 100644 --- a/jupyterhub_config.py +++ b/jupyterhub_config.py @@ -1136,7 +1136,10 @@ c.DockerSpawner.notebook_dir = notebook_dir c.DockerSpawner.volumes = {"jupyterhub-user-{username}": notebook_dir} # Remove containers once they are stopped -c.DockerSpawner.remove = True +c.DockerSpawner.remove = False # For debugging arguments passed to spawned containers c.DockerSpawner.debug = True + +c.JupyterHub.hub_ip = "jupyterhub" +c.JupyterHub.hub_port = 8080 \ No newline at end of file -- GitLab