Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 654 Bytes

README.md

File metadata and controls

32 lines (20 loc) · 654 Bytes

Donations

Hello, I work on this project to help you make safe-hosted deep learning solutions easily.

If my work helped you, please consider chipping in at: https://www.patreon.com/adamency

deeplearning-containers

Choose an image.

Ex: jupyter-cuda11.0-tensorflow2.4.0

Build the image

IMAGE=jupyter-cuda11.0-tensorflow2.4.0
cd dockerfiles/${IMAGE}
sudo docker build -t ${IMAGE} .

Run the image

sudo docker run --rm -it -p 8888:8888 --name ${IMAGE}_container ${IMAGE}

If image uses CUDA, run with nvidia-docker instead:

sudo nvidia-docker run --rm -it -p 8888:8888 --name ${IMAGE}_container ${IMAGE}