tunel VS docker-stacks

Compare tunel vs docker-stacks and see what are their differences.

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
tunel docker-stacks
1 13
5 7,751
- 0.7%
0.0 9.5
over 1 year ago about 18 hours ago
Python Python
Mozilla Public License 2.0 GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

tunel

Posts with mentions or reviews of tunel. We have used some of these posts to build our list of alternatives and similar projects.
  • Software Showcase Sunday
    1 project | /r/ResearchSoftwareEng | 3 Jul 2022
    This weekend I've started to make tiny progress on my library "tunel," which means as it sounds - an elegant derivation of "tunneL' so you can imagine we are doing lots of tricks with ssh! It currently offers (and this will be extended) developer interfaces for HPC! -> https://github.com/vsoch/tunel. So far I have a few apps ready to go for standard slurm and/or singularity via sockets, and I should be adding an HTCondor launcher next. After that I plan to develop "app templates" so anyone can easily make an app that will easily run via HPC. If anyone knows of an existing tool for some visualization / monitoring or other that they would like me to investigate as an app, please let me know!

docker-stacks

Posts with mentions or reviews of docker-stacks. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-21.
  • Linux or Windows for coding??
    2 projects | /r/learnprogramming | 21 May 2023
    See https://github.com/jupyter/docker-stacks
  • Connecting IPython notebook to spark master running in different machines
    1 project | /r/codehunter | 11 Apr 2023
    I have an IPython notebook running in a docker container in Google Container Engine, the container is based on this image jupyter/all-spark-notebook
  • Looking for a solution to sandbox python remotely.
    1 project | /r/selfhosted | 26 Mar 2023
  • A short tutorial on running Spark with Jupyter using Docker
    1 project | /r/dataengineering | 14 Feb 2023
    Yes sir :) love the jupyter docker stacks: https://github.com/jupyter/docker-stacks
  • (RANT) I think I'll die trying to setup and run Spark with Python in my local environment
    1 project | /r/dataengineering | 28 Jan 2023
    I use an image that allows me to run spark on jupyter notebooks and use files from my local machine to test code. Here is a good one https://github.com/jupyter/docker-stacks/tree/main/pyspark-notebook
  • How we made Jupyter Docker Stacks multi-arch
    1 project | dev.to | 10 Jan 2023
    Today I will tell you a story behind making Jupyter Docker Stacks able to build aarch64 images without many (almost any) compromises. If you want to read how it is implemented now, you can skip to the last section of this post.
  • 3.51 GB Bloated Image for Coqui TTS Server
    2 projects | /r/Dockerfiles | 30 Nov 2021
    FROM ubuntu:20.04 LABEL maintainer="PhysicsReplicatorAI " ARG NB_USER="coqui_user" \ NB_UID="1000" \ NB_GID="100" USER root ENV DEBIAN_FRONTEND=noninteractive \ TERM=xterm \ TZ=America/New_York # -------------------------------------------------------------------------------- # Update/Install the basics # -------------------------------------------------------------------------------- RUN apt-get update -y && \ apt-get install -y --no-install-recommends \ sudo locales apt-utils g++ libsndfile1-dev && \ apt-get -y clean autoclean && \ apt-get -y autoremove --purge && \ echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && \ locale-gen # -------------------------------------------------------------------------------- # Configure environment # -------------------------------------------------------------------------------- ENV SHELL=/bin/bash \ NB_USER="${NB_USER}" \ NB_UID=${NB_UID} \ NB_GID=${NB_GID} \ LC_ALL=en_US.UTF-8 \ LANG=en_US.UTF-8 \ LANGUAGE=en_US.UTF-8 \ PATH="/home/${NB_USER}/.local/bin:${PATH}" \ HOME="/home/${NB_USER}" # -------------------------------------------------------------------------------- # Create coqui_user # User creation method/pattern obtained from: # https://github.com/jupyter/docker-stacks/blob/master/base-notebook/Dockerfile # -------------------------------------------------------------------------------- COPY fix-permissions /usr/local/bin/fix-permissions RUN chmod a+rx /usr/local/bin/fix-permissions && \ sed -i 's/^#force_color_prompt=yes/force_color_prompt=yes/' /etc/skel/.bashrc && \ echo "auth requisite pam_deny.so" >> /etc/pam.d/su && \ sed -i.bak -e 's/^%admin/#%admin/' /etc/sudoers && \ sed -i.bak -e 's/^%sudo/#%sudo/' /etc/sudoers && \ useradd -l -m -s /bin/bash -N -u "${NB_UID}" "${NB_USER}" && \ chmod g+w /etc/passwd && \ fix-permissions "${HOME}" && \ cd "${HOME}" && \ apt-get install -y --no-install-recommends python3-dev python3-pip && \ apt-get -y autoclean && \ apt-get -y autoremove --purge && \ apt-get -y purge $(dpkg --get-selections | grep deinstall | sed s/deinstall//g) && \ rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* # -------------------------------------------------------------------------------- # Install TTS # -------------------------------------------------------------------------------- USER ${NB_UID} RUN fix-permissions "${HOME}" && \ python3 -m pip install --no-cache-dir --upgrade TTS && \ rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* EXPOSE 5002 ENTRYPOINT ["tts-server"]
  • New to dockerfiles and was wondering if somebody can help with user switching?
    1 project | /r/Dockerfiles | 30 Nov 2021
  • How do I create a Docker image building on another image?
    1 project | /r/docker | 31 Oct 2021
    Pretty much what title says. I want to build an image on top of the scy-py image with my preferred libraries such as NLTK, spaCy and stanza. Is there a way to do that?
  • Docker + Python Environment Management
    1 project | /r/docker | 1 Sep 2021
    The disadvantages are that everytime I rebuild the entire docker image I have to pray that all the dependencies that I did not list did not change, because if they did, the build fails with a cryptic error message. Also if the list of pip installs gets too long, pip is no longer able to resolve all the dependencies and then the docker image does not build either. So actually not having a requirements.txt might be a disadvantage. Further, I do not like the fact that I have both Miniconda and "regular Python" in one file. This happened, because this Dockerfile evolved from one of the Jupyter Notebook Dockerfiles. My development environment is Jupyter and I wanted my production environment as close as possible to my development environment.

What are some alternatives?

When comparing tunel and docker-stacks you can also consider the following projects:

the-littlest-jupyterhub - Simple JupyterHub distribution for 1-100 users on a single server

nbgrader - A system for assigning and grading notebooks

nbmake - 📝 Pytest plugin for testing notebooks

pangeo-binder - Pangeo + Binder (dev repo for a binder/pangeo fusion concept)

zero-to-jupyterhub-k8s - Helm Chart & Documentation for deploying JupyterHub on Kubernetes

eaf-jupyter - Jupyter client

pretty-jupyter - Creates dynamic html report from jupyter notebook.

crystal_kernel - Python wrapper kernel for Crystal

best-of-jupyter - 🏆 A ranked list of awesome Jupyter Notebook, Hub and Lab projects (extensions, kernels, tools). Updated weekly.

ipycanvas - Interactive Canvas in Jupyter

dive - A tool for exploring each layer in a docker image

frontends-team-compass - A repository for team interaction, syncing, and handling meeting notes across the JupyterLab ecosystem.