On Thu, Feb 13, 2020 at 5:28 AM Aakash Sharma <[email protected]> wrote: > > Hi I understand jupyterhub has a docker spawner that will give a container > per user and isolate so users do not interfere their work. But if we wish to > have a kaggle kernel like feature that for each notebook we spawn a container > import required packages library build the environment and assign to user. > Essentially multiple containers spawned with required dependencies and > assigned to user. How it may be achieved. Thx, aakash >
I believe we started on that direction with our Docker support on Jupyter Enterprise Gateway, but ended up making a more `docker swarm` support: https://jupyter-enterprise-gateway.readthedocs.io/en/latest/kernel-docker.html This would enable each kernel to run as an individual docker container. We also have support for Kubernetes, which in combination with JupyterHub can give you pretty much what you describe above: https://jupyter-enterprise-gateway.readthedocs.io/en/latest/kernel-kubernetes.html > -- > You received this message because you are subscribed to the Google Groups > "Project Jupyter" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/jupyter/12b99811-7c7e-401e-aa0e-a5a00f267d34%40googlegroups.com. -- Luciano Resende http://twitter.com/lresende1975 http://lresende.blogspot.com/ -- You received this message because you are subscribed to the Google Groups "Project Jupyter" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jupyter/CAGU5speThSgTS7yb8ovJ_kTUgDW8zpCvwWRTW2kyJ28a%2B2OU-g%40mail.gmail.com.
