10 lines
299 B
Python
10 lines
299 B
Python
c = get_config()
|
|
|
|
c.JupyterHub.authenticator_class = "dummy"
|
|
c.JupyterHub.spawner_class = "docker"
|
|
c.JupyterHub.hub_ip = '0.0.0.0'
|
|
c.JupyterHub.hub_connect_ip = 'jupyterhub'
|
|
c.DockerSpawner.image = 'jupyter/base-notebook'
|
|
c.DockerSpawner.network_name = 'stack_default'
|
|
c.DockerSpawner.remove = True
|