Hello, Docker is a cool new tech, but they do many things in a docker way that is different than a virtual machine.
Basically what you are doing in the vagrantfile is download a docker image, but the name is wrong from what I see. plus the message is telling you that you are not doing anything (no commands) index.docker.io have the boxes checking this: https://registry.hub.docker.com/_/centos/tags/manage/ seems the name is like: centos:centos6 and you need to add a command, docker will run a command, imagine a new vm boots out of nothing and 1 command run, there is no boot like a normal OS. so if you run a web server, that will be the only process running inside docker. I would suggest you play a bit with docker outside vagrant first if you haven't done, as that will make things go clear. Alvaro. On Fri, Oct 10, 2014 at 12:34 AM, Dirk Louwers <[email protected] > wrote: > Hi, > > I am new to using Vagrant with Docker and ran into the following issue: > > Given the following block: > > config.vm.provider "docker" do |d| > d.image = "centos:6" > end > > and the following command: > > vagrant up --provider=docker > > I get the following error: > > Error response from daemon: No command specified > > Since the machine is down asking for logs through vagrant docker-logs > crashes so I have no clue how to debug this. > > > Hope someone can shed some light on this. Googling hasn't helped me much > so far. > > > Best, > > > Dirk > > -- > You received this message because you are subscribed to the Google Groups > "Vagrant" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
