Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,20 +80,20 @@ 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

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

Expand Down