Docker image
Opened this issue · 4 comments
Is it possible to get a docker image with manifold?
Summary
not very familiar with yarn and getting errors on build. Docker will help a lot!
Expected Behavior
Docker run uber/manifold
and voila :-)
Possible Solution
alternatively, I can build and share one, just having temporary troubles with yarn install
😬
Thanks for raising the issue! Currently we have not planned to implement this feature, but contributions are welcome! In the meantime, please raise issues if you have any specific problems using yarn
with this project.
+1. Would love to have a docker image for this. I don't know much about Yarn etc. and was running into trouble when I tried to get it working a couple of weeks ago. Will try and see if I can take this on as well when I have some bandwidth
Is it possible to get a docker image with manifold?
Summary
not very familiar with yarn and getting errors on build. Docker will help a lot!
Expected Behavior
Docker run uber/manifold
and voila :-)Possible Solution
alternatively, I can build and share one, just having temporary troubles with
yarn install
😬
Install yarn inside docker container
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
apt update
apt install yarn
I am able to run manifold example inside docker container, but since it is running on localhost, i tried to map the port 8080 with host port but it is not accessible outside the container, what config i need to change to make it accessible outside.
Also, since it uses gpu do i need to run it using nvidia-docker for better performance or else how it;s going to use gpu what dependencies are required
can i use tensorflow/pytorch prebuild gpu image or ubuntu image will work fine?