From de5b4d7b263678a6c72dc378741e16a1afab9e7b Mon Sep 17 00:00:00 2001 From: ale <ale@incal.net> Date: Wed, 12 Mar 2025 11:06:47 +0000 Subject: [PATCH] Typo --- roles/jupyter/tasks/jupyter.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/jupyter/tasks/jupyter.yml b/roles/jupyter/tasks/jupyter.yml index edba243..591661f 100644 --- a/roles/jupyter/tasks/jupyter.yml +++ b/roles/jupyter/tasks/jupyter.yml @@ -73,8 +73,8 @@ # This creates a volume for each user to store their notebooks. As an alternative, # we could bind-mount local filesystem paths (but something must create them first). c.DockerSpawner.volumes = { - 'jupyterhub-user-{username}': '/home/jovyan/work' - 'jupyterhub-shared': '/home/jovyan/work/shared' + 'jupyterhub-user-{username}': '/home/jovyan/work', + 'jupyterhub-shared': '/home/jovyan/work/shared', } c.DockerSpawner.network_name = 'jupyter' c.DockerSpawner.image = 'registry.git.autistici.org/ula/images/jupyter-notebook:main' -- GitLab