Portable AWS-style infrastructure service for Docker
1–10 of 15 posts
Re: Portable AWS-style infrastructure service for Docker
#2Re: Portable AWS-style infrastructure service for Docker
#3I haven't really worked with Docker in anger yet - but I guess I could pull down the files / run it and then take a look inside to see how it works.
Is there a link to the original code? Is there a risk that projects are going to start to be released in a way where it's going to take jumping through a couple of hoops to see how they work?
I don't want to sound disparaging to the project (it sounds interesting). I was just curious in having a really quick glance at the code to see if it was something I wanted to keep an eye on.
Re: Portable AWS-style infrastructure service for Docker
#4I went to have a snoop around the code but all I can really see is installation files. Genuine question, is this project closed source? I haven't really worked with Docker in anger yet - but I guess I could pull down the files / run it and then take a look inside to see how it works. Is there a link to the original code? Is there a risk that projects are going to start to be released in a way where it's going to take…
Re: Portable AWS-style infrastructure service for Docker
#5The vision seems to be docker on top of rancher on top of docker? Afraid I can't see how this would help? Unless it's just to inspire "yo dawg" Xzibit jokes? b^)
Re: Portable AWS-style infrastructure service for Docker
#6The vision seems to be docker on top of rancher on top of docker? Afraid I can't see how this would help? Unless it's just to inspire "yo dawg" Xzibit jokes? b^)
Re: Portable AWS-style infrastructure service for Docker
#7Re: Portable AWS-style infrastructure service for Docker
#8The vision seems to be docker on top of rancher on top of docker? Afraid I can't see how this would help? Unless it's just to inspire "yo dawg" Xzibit jokes? b^)
A docker container can manage the docker installation on the host. This is done by binding the docker.sock from the host to the container with the following command line argument: `-v /var/run/docker.sock:/var/run/docker.sock`
Re: Portable AWS-style infrastructure service for Docker
#9Earlier quoted context omitted.
A docker container can manage the docker installation on the host. This is done by binding the docker.sock from the host to the container with the following command line argument: `-v /var/run/docker.sock:/var/run/docker.sock`
Of course it can. The question is, why would you want to?
Re: Portable AWS-style infrastructure service for Docker
#10Some of the images workflow as deploying/removing from a host, replacing existing images (upgrades), dependency management (app image v1.0 depends on Nginx image v2.0), metadata like OS startup scripts (pg image needs to start on boot) seems to already be covered by apt/rpm and that tools like Ansible/others leverage for deployments in infrastructures.