DockerΒΆ

NOTE: Please read the official Docker documentation and specifically the information related to Docker images.

Begin by browsing the available Continuum images on our Docker profile.

Alternately, you may view a list of available images via a terminal window:

docker search continuumio

Then pull the desired image:

docker pull continuumio/miniconda

Now you can create a container using this image:

docker run -t -i continuumio/miniconda /bin/bash

This gives you direct access to the container where the conda tool is already available. Test it with the following command:

conda info

You now have a fully working Continuum image.