I am learning how to install jupyter hub (total beginner) and I use the follwoing command:
docker run -it -d -p 8000:8000 jupyterhub/jupyterhub
when I go to local host in the browser I see the login credentials window.
How can I run the container in a kind of administrator modus? Or where should I enter manually my credentails in order to actually be able to login?
I don’t know if you already found this part of the documentation.
But the link details how to configure admin users.
In general, you can configure your JupyterHub via a config file. (Example).
In order to login, you could open a shell in your container and add a user manually like this: link
Or if you are just learning you could configure your Jupyterhub like this:
# dummy for testing. Don't use this in production! Any login will work!
c.JupyterHub.authenticator_class = "dummy"
1 Like