You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
wide variety of base images (alpine, ubuntu, cuda, ...)
no annoying default base environment
no annoying default channels
I tested speed, and indeed it is! I think you could add this to the docs to show a) how simple it is to use the container, and b) that it is more performant than miniconda
Micromamba:
docker run -i -t mambaorg/micromamba /bin/bash -c "\
time micromamba install -yn base -c bioconda -c conda-forge python=3.10 nextclade -y --quiet && bash"
real 0m9.570s
user 0m9.574s
sys 0m3.865s
docker run -i -t -p 8888:8888 continuumio/miniconda3 /bin/bash -c "\
time conda install -yn base -c bioconda -c conda-forge python=3.10 nextclade -y --quiet && bash"
real 0m22.089s
user 0m14.953s
sys 0m3.726s
In addition this, the pull time is of course much shorter for micromamba (20 seconds for miniconda on 100Mbps, vs 3 seconds for micromamba)
The text was updated successfully, but these errors were encountered:
corneliusroemer
changed the title
DOC: Show very simple usage
DOC: Show very simple usage and benchmark against continuum/miniconda3
Jun 3, 2024
I'm really sorry but I'm already procrastinating too much 🙃 I can't commit to doing it, happy for you to reuse whatever I've written above without need to attribute (other than mention in PR)
Here's the jupyter example translated to work with micromamba-docker:
I was asked why I prefer micromamba-docker over continuum/miniconda3.
Miniconda shows this very simple command on their readme, i love it:
No need for dockerfile, just run this snippet.
Among the advantages for micromamba are:
I tested speed, and indeed it is! I think you could add this to the docs to show a) how simple it is to use the container, and b) that it is more performant than miniconda
Micromamba:
In addition this, the pull time is of course much shorter for micromamba (20 seconds for miniconda on 100Mbps, vs 3 seconds for micromamba)
The text was updated successfully, but these errors were encountered: