here is the error i’m getting when jupyterhub is trying use the mounted volume. I need to mount notebooks and .local as my install is restricted and the root volume of container is read only.
From container logs:
traitlets.traitlets.TraitError: No such directory: ‘’/jupyterhub-users/spokrand/notebook’’
wondering if the double single quotes are causing the problem. but the config looks correct!
NOTEBOOK_DIR = ‘/home/jovyan/work’
USER_NOTEBOOK_DIR = “/jupyterhub-users/”+username+“/notebook”
c.DockerSpawner.volumes = {
f’{USER_NOTEBOOK_DIR}': NOTEBOOK_DIR,
}