-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docker build guide doesn't work #878
Comments
@y-vectorfield Do you have any ideas how to fix this? |
@jonthegeek , @dfalbel |
@dfalbel |
Hi @y-vectorfield, I still didn't have time to work on a new guide. I have worked on different approach here though: https://github.com/mlverse/docker/tree/main/torch |
Hello, @dfalbel |
@jonthegeek, @dfalbel, I'll help to enhance materials for docker build. |
I'm trying to build a torch-friendly environment in docker using
docker/build_env_guide.md
, but I'm hitting errors. I'll specify them below, but it looks like the guide was updated (it mentionscuda-113
andcuda-102
directories) but the accompanying files were not (the directories arecuda-111
andcuda-101
).The first thing I had to change was the
FROM nvidia/cuda
line in the Dockerfile.FROM nvidia/cuda:11.1-cudnn8-devel-ubuntu18.04
doesn't exist as far as I can find. I updated that to 11.1.1, and then after that failed also tried ubuntu20.04, although I don't think that's actually the problem.build_env.sh
works (with the updatedFROM
), butdocker-compose up -d
gives this error:I assume that's an issue with line 7 of
docker-compose.yml
(runtime: nvidia
), but I don't know enough about docker or docker-compose to grok what needs to change.I'm running this on Windows in case that matters.
The text was updated successfully, but these errors were encountered: