This repository contains the end-user docker images for RAPIDS.
There are two image types: base
(rapidsai/base
) and notebooks
(rapidsai/notebooks
).
This image can be found here: https://hub.docker.com/r/rapidsai/base
It contains the basic installation of RAPIDS. By default it starts an ipython
REPL.
This image can be found here: https://hub.docker.com/r/rapidsai/notebooks
It extends the base
images to include RAPIDS notebooks and a jupyterlab
server which starts automatically.
Tags for both base
and notebooks
images take the form of ${RAPIDS_VER}-cuda${CUDA_VER}-py${PYTHON_VER}
.
There is no latest
tag.
The following environment variables can be passed to the docker run
commands for each image:
EXTRA_CONDA_PACKAGES
- used to install additionalconda
packages in the container. Use a space separated list of conda version specsCONDA_TIMEOUT
- how long (in seconds) theconda
install should wait before exitingEXTRA_PIP_PACKAGES
- used to install additionalpip
packages in the container. Use a space separated list of pip version specsPIP_TIMEOUT
- how long (in seconds) thepip
install should wait before exitingUNQUOTE
- Whether the command line args todocker run
should be executed with or without being quoted. Default to false and it is unlikely that you need to change this.
Mounting files/folders to the locations specified below provide additional functionality for the images.
/home/rapids/environment.yml
- aconda
YAML environment file that contains a list of dependencies that will be installed. The file should look like:
dependencies:
- beautifulsoup4
- jq
Please see CONTRIBUTING.md
for details on how to contribute to this repo.