From e0c6e8eb0bb4ea310ca05b1a9fc351a2de412181 Mon Sep 17 00:00:00 2001 From: Saranya Pal <109691146+Saranyapal21@users.noreply.github.com> Date: Sat, 4 Oct 2025 23:15:56 +0530 Subject: [PATCH] Update README.md Fixed the terminology between Docker image and container; which might have confused users before. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d82bf2fbc..cdfe3c48e 100644 --- a/README.md +++ b/README.md @@ -80,12 +80,12 @@ See [conda documentation](https://conda.io/projects/conda/en/latest/commands/env ### Using a Docker container -A Dockerfile is provided for building a container: +A Dockerfile is provided for building an image: docker build . -f Dockerfile -t diffdock -Alternatively, you can use a pre-built container to run the code. -First, download the container from Docker Hub: +Alternatively, you can use a pre-built image to run the code. +First, download the image from Docker Hub: docker pull rbgcsail/diffdock @@ -93,7 +93,7 @@ Check if you have a GPU available docker run --rm --gpus all nvidia/cuda:11.7.1-devel-ubuntu22.04 nvidia-smi -Then, run the container: +Then, run the image to build the container: docker run -it --gpus all --entrypoint /bin/bash rbgcsail/diffdock