-
Notifications
You must be signed in to change notification settings - Fork 1k
Add Dockerfile and Docker quickstart guide #2
Conversation
Thank you for submitting this pull request, however I do not see a valid CLA on file for you. Before we can merge this request please visit https://yahoocla.herokuapp.com/ and agree to the terms. Thanks! 😄 |
CLA is valid! |
Thanks for adding docker support. Can you also add steps / links on docker installation (if possible for Mac)? I will try it out. |
I've added Docker Installation links for Windows, Mac and Ubuntu. I have tested the getting started guide on Mac OSX and Ubuntu but do not have a Windows machine for testing at this time. |
@@ -0,0 +1,4 @@ | |||
FROM kaixhin/caffe |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@neufeldtech Is this the official caffe docker package? There is also another guide to docker, lets consolidate it in this PR.
@neufeldtech it seems we did both the same! Please take a look here also if it can help #7 so that we will have just one PR 👍 |
@jay-mahadeokar I've updated the README to build the docker image directly from the official BVLC caffe repo now. @loretoparisi I like your approach! I've collapsed a few steps of your instructions into fewer commands. Take a look at what I've got so far here: 68040e6 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks good!
Thanks for adding docker support @neufeldtech @loretoparisi. |
@neufeldtech basically you need to install on the host machine the nvidia
we verify
This will download nvdia CUDA drivers and install it
Note that we have one GPU (a very cheap And our container is up & running
In this case we could do
and verify again that the nvidia docker container is getting the gpu as well
ok it seems so,
so that we will have
If we can this typical error
it means that we have to update the
and
but with let's say a |
I think it is best to have a wiki page with docker information and documentation. We can move all the documentation to that page, so that the Readme itself remains concise. @loretoparisi we can also move the existing docker documentation in Readme to that wiki page. |
I've created a simple Dockerfile and guide to be considered for inclusion in this repo.
The goal in mind is to lower the entry barrier for users that want to quickly get started and explore this repo without having to install all of the projects dependencies (Caffe).