From 70b34c865ce534414894222cb57ea7e8ed7e1950 Mon Sep 17 00:00:00 2001 From: Till Korten Date: Thu, 25 Apr 2024 11:17:10 +0200 Subject: [PATCH 1/2] Fix links to docker hub in README.md The links to docker hub still pointed to the deprecated images. This pull request updates the links to point to the current images. Fixes issue #661 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9e938579..4c675847 100644 --- a/README.md +++ b/README.md @@ -5,17 +5,17 @@ This repository contains the end-user docker images for [RAPIDS](https://rapids. ## Image types -There are two image types: `base` ([`rapidsai/rapidsai`](https://hub.docker.com/r/rapidsai/rapidsai)) and `notebooks` ([`rapidsai/rapidsai-notebooks`](https://hub.docker.com/r/rapidsai/rapidsai-notebooks)). +There are two image types: `base` ([`rapidsai/base`](https://hub.docker.com/r/rapidsai/base)) and `notebooks` ([`rapidsai/notebooks`](https://hub.docker.com/r/rapidsai/notebooks)). ### Base image -This image can be found here: https://hub.docker.com/r/rapidsai/rapidsai +This image can be found here: https://hub.docker.com/r/rapidsai/base It contains the basic installation of RAPIDS and [`dask-sql`](https://github.com/dask-contrib/dask-sql). By default it starts an `ipython` REPL. ### Notebooks image -This image can be found here: https://hub.docker.com/r/rapidsai/rapidsai-notebooks +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](https://jupyter.org/) which starts automatically. From 458cf4999dadf77be3683881932ff109a0a15582 Mon Sep 17 00:00:00 2001 From: Till Korten Date: Fri, 24 May 2024 15:02:50 +0200 Subject: [PATCH 2/2] fix docker links in CONTRIBUTING.md --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 89559043..af1d5474 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,9 +6,9 @@ Building the images requires `docker` `>=18.09` with [`buildkit`](https://docs.d ## Building -To build the `notebooks` image with default arguments: `docker buildx build --pull -f Dockerfile -t rapidsai/rapidsai-notebooks context/` +To build the `notebooks` image with default arguments: `docker buildx build --pull -f Dockerfile -t rapidsai/notebooks context/` -To build just the `base` image with default arguments: `docker buildx build --pull -f Dockerfile -t rapidsai/rapidsai --target=base context/` +To build just the `base` image with default arguments: `docker buildx build --pull -f Dockerfile -t rapidsai/base --target=base context/` ### Build arguments