[36b44b]: / docker / README.md

Download this file

22 lines (16 with data), 486 Bytes

Docker

Run a Container

We prepare a pre-built docker image on Docker Hub, based on PyTorch 1.8.1 and CUDA 11.1.
To start a container with our docker image, use the following line.

docker run --gpus all -it milagraph/torchdrug 

Build Docker Image

You may also use the Dockerfile provided in this folder to build an image from scratch.
Run the following command in this directory.

docker build -t "your-image-name" .