-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Start entrypoint bash scripts with -l #1935
Conversation
This reads any .bashrc, .profile, etc files present in user folders while starting. Matches what repo2docker does in https://github.com/jupyterhub/repo2docker/blob/b36a6a75f54bfb47903b68671e9e157305f92fa6/repo2docker/buildpacks/python3-login. There is a specific downside here when used with JupyterHub - users' broken .bashrc files may break these scripts from executing, and hence prevent their servers from starting. Fixes jupyter#1848
If we want to test this, one way would be to make a bashrc file and mount that in the user home directory, and make sure that the process started has that executed. Probably also needs a documentation bit about breaking jupyterhub server start if your bashrc is broken, so tread carefully. If this otherwise looks ok I'll add those! |
I do consider this to be an upside 😃 What bothers me more - if I'm understanding this correctly, profile scripts might me run not just once, but twice, because |
Hi there, I just want to chime in on how this would impact my hub community. We persist user home directories and mount them onto servers. It's not uncommon for users in my community to use tools that inject various scripts and automations, or terminal bling, into their bashrc files. These things are shockingly fragile and can malfunction due to any number of issues, including problems with python dependencies that are used by the automations in the .bashrc file--and such issues may not appear until the next server upgrade, when something gets mismatched in the user's python library or some dependency disappears. It's extremely easy for .bashrc to contain garbage. It's also hard to edit this file on a hub without access to the web terminal. Based on @yuvipanda's comments, it sounds like users who accidentally break their .bashrc would need an administrator to get involved and fix their .bashrc file before they would be able to log in. Administrators might also need to validate .bashrc files after server upgrades to ensure nothing has broken. This would have a big impact on the maintainers of the hub, making upgrades more perilous and requiring intervention to fix broken servers, and would also degrade the experience for users--who would basically end up locked out if their server ever shuts off with garbage in the .bashrc. |
Is there a way to read |
I actually had another idea, which might be easier to implement. We're using SHELL docker command. I think we can add @bribroder you problem might be solved by creating inherited image:
@yuvipanda @bribroder |
@mathbunnyru I am not 100% sure if I do agree with @bribroder that this adds a bunch of work to hub admins, which is making me reconsider this! If what people want is to pass |
I think you're right, I wasn't able to make it work.
We will still be breaking some users - they won't be able to launch their terminals in JupyterLab. |
@mathbunnyru I went through memory lane, and found https://github.com/berkeley-dsep-infra/datahub/pull/1908/files#diff-1f0c374af36c9720d2a00eddb864f4b563d38042817fd3a4f7df357c1358f3d6L2. I think the incantation is something like: c.ServerApp.terminado_settings = {"shell_command": ["/bin/bash", "-l"]} Unfortunately I don't think I'll be able to test it out anytime soon - think you can take a peek? |
Sure. My Dockerfile: FROM jupyter/base-notebook
RUN printf "touch /home/${NB_USER}/file.txt" >> /home/${NB_USER}/.bashrc I ran it using: docker build -t test .
docker run -p 8888:8888 -it --rm test Opened a notebook, typed (base) jovyan@6f13b113a45c:~$ ls
file.txt Untitled.ipynb work So, it seems, we don't have to do anything. |
That is what I'd expect though - the bashrc is not executed when the notebook is started, but is executed when a terminal is opened explicitly! This means that opening the notebook server will not crash due to bashrc problems, but opening a terminal would. |
I didn't use your setting, this is what makes it interesting 😂 |
HAHAHA ok now that is indeed interesting :) If you do a |
I'll tell you in a few hours, I don't have a 💻 with me. |
I made a simple test - I used my VM, then added |
@yuvipanda I think we might have a better solution for executing some scripts (including So, people should be able to create a script, which sources On the other hand, I think we can make We already use startup hooks in one of our recipes, and it works nicely: https://jupyter-docker-stacks.readthedocs.io/en/latest/using/recipes.html#add-a-custom-conda-environment-and-jupyter-kernel |
Yeah, I agree this can probably be closed. Thanks @bribroder for bringing in the perspective of added workload! |
Describe your changes
This reads any .bashrc, .profile, etc files present in user folders while starting. Matches what repo2docker does in
https://github.com/jupyterhub/repo2docker/blob/b36a6a75f54bfb47903b68671e9e157305f92fa6/repo2docker/buildpacks/python3-login.
There is a specific downside here when used with JupyterHub - users' broken .bashrc files may break these scripts from executing, and hence prevent their servers from starting.
Issue ticket if applicable
Fixes #1848
Checklist (especially for first-time contributors)