We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 96e4120 + 807f82b commit 1baac27Copy full SHA for 1baac27
jupyterhub_config.py
@@ -36,7 +36,8 @@
36
# Mount the real user's Docker volume on the host to the notebook user's
37
# notebook directory in the container
38
c.DockerSpawner.volumes = { 'jupyterhub-user-{username}': notebook_dir }
39
-c.DockerSpawner.extra_create_kwargs.update({ 'volume_driver': 'local' })
+# volume_driver is no longer a keyword argument to create_container()
40
+# c.DockerSpawner.extra_create_kwargs.update({ 'volume_driver': 'local' })
41
# Remove containers once they are stopped
42
c.DockerSpawner.remove_containers = True
43
# For debugging arguments passed to spawned containers
0 commit comments