Docker is an open platform for developers and system administrators to build, ship, and rundistributed applications, whether on laptops, data center virtual machines, or the cloud.Anaconda, Inc. provides Anaconda and Miniconda Docker images.
Read the official Docker documentation and specifically the information related to Docker images.
Begin by browsing the available Anaconda images on our Docker profile.
To obtain a fully working Anaconda image:
-
In a terminal window, run this command to display a list of available images:
-
Pull the desired image:
-
Create a container using the image:
This gives you direct access to the container where the conda tool is already available.
-
Test the container:
You now have a fully working Anaconda image.
To install and launch the Jupyter Notebook, execute the following command all on one line from the host machine:
This command is formatted for readability. If your shell supports line continuation (e.g., bash, zsh), you can run it as shown. Otherwise, remove the backslashes (\
) and combine it into a single line.
To access the Jupyter notebook, copy and paste the server URL from the terminal output. It will look something like http://localhost:8888/tree?token=<TOKEN_VALUE>
or, if you are using a Docker Machine VM, http://<DOCKER-MACHINE-IP>:8888/tree?token=<TOKEN_VALUE>
.
Was this page helpful?