From 54db628fe6aa130ec88ced84f9304ea6f5b14fd6 Mon Sep 17 00:00:00 2001 From: stellarshenson Date: Fri, 18 Jul 2025 00:48:40 +0200 Subject: [PATCH] moved cache mount from .cache to /home/lab/.cache --- config/jupyterhub_config.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/config/jupyterhub_config.py b/config/jupyterhub_config.py index 3c119f2..9205957 100755 --- a/config/jupyterhub_config.py +++ b/config/jupyterhub_config.py @@ -76,8 +76,7 @@ c.DockerSpawner.name_template = "jupyterlab-{username}" c.DockerSpawner.volumes = { "jupyterlab-{username}_home": "/home", "jupyterlab-{username}_workspace": DOCKER_NOTEBOOK_DIR, - "jupyterlab-{username}_cache": "/mnt/cache", - "jupyterlab-{username}_certs": "/mnt/certs", + "jupyterlab-{username}_cache": "/home/lab/.cache", "jupyterlab-{username}_mlflow": "/mnt/mlflow", "jupyterlab_shared": "/mnt/shared" }