VISIONAI / clouddream

Deepdreaming in the clouds: A Dockerized deepdream Guide
370 stars 62 forks source link

Сlouddream on centos or other Linux ? #6

Open svkovalyov opened 9 years ago

svkovalyov commented 9 years ago

Will work clouddream on centos? Docker not work in this OS, so all applications need to be installed manually

quantombone commented 9 years ago

Bundling Caffe into a Docker container only works if you can actually run Docker. I do most of my Docker work in Ubuntu and CoreOS, and cloud providers seems to have that as an option. I also run a VirtualBox Ubuntu on my Mac OS X laptop, and that runs Docker without a problem.

There are some instructions on getting up and running with Docker on centos on the Docker homepage: https://docs.docker.com/installation/centos/

quantombone commented 9 years ago

You can follow the Docker installation Guide for CentOS here: https://docs.docker.com/installation/centos/

I just tried it on a DigitalOcean 1GB instance, and it works. Here is what I did, immediately after creating a new CentOS box:

sudo yum update
curl -O -sSL https://get.docker.com/rpm/1.7.0/centos-6/RPMS/x86_64/docker-engine-1.7.0-1.el6.x86_64.rpm
sudo yum localinstall --nogpgcheck docker-engine-1.7.0-1.el6.x86_64.rpm
sudo service docker start
sudo yum install git
git clone https://github.com/VISIONAI/clouddream.git
cd clouddream
./start.sh
trinitronx commented 9 years ago

@svkovalyov: docker works on CentOS... however it won't work on any linux without a newer kernel.

I'd suggest trying CentOS 7 ;-)