We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I think this is on the level of complexity as Example 1 in the README.
The setup is as follows:
git clone https://github.com/NII-cloud-operation/sshkernel cd sshkernel docker build . -t sshkernel docker run --rm -it -p 8888:8888 sshkernel /bin/bash
# in container ssh-keygen -t rsa -b 4096 cat ~/.ssh/id_rsa.pub # add this to ~/.ssh/authorized_keys on host cat > ~/.ssh/config <<EOF Host myserver HostName 172.17.0.1 # IP of docker host User uprod_asFLeb # username of docker host Port 22 IdentityFile ~/.ssh/id_rsa ForwardAgent yes EOF chmod 600 ~/.ssh/config
jupyter notebook --no-browser
We can now launch a new notebook. Here is the operation and the connection failure:
The text was updated successfully, but these errors were encountered:
Thank you for your report.
I tried to reproduce the issue, but it worked correctly. My environment is Ubuntu 18.04, Docker CE 18.09.
Sorry, something went wrong.
No branches or pull requests
I think this is on the level of complexity as Example 1 in the README.
The setup is as follows:
jupyter notebook --no-browser
and connect to it from the host, on port 8888We can now launch a new notebook. Here is the operation and the connection failure:
The text was updated successfully, but these errors were encountered: