If you take the chef root, you can create variations of a container from a single base container, dynamically. Like containers in dev and prod might run the same app, but with different configs or with different versions. With docker thats not straight forward. Also, its difficult to reuse dockerfiles, thus their composability is limited.but all these things can be nulled depending upon your workflow. Docker provides an awesome workflow using union mounts and container (and few more parts). If you can maintain a very low dev to production infrastructure parity, if you can run immutable hosts (something that coreos offers), and/or if you are on baremetal, docker can shine. But still its not clear how the last mile will be completed (who will install docker? , if not chef :-D ). Or even in that scale, compute wont be your only problem.. etcUsing raw chef. ruby lxc binding[1] is also present (GA will be coupled with lxc 1.0 public release), which mean you can spawn raw containers using ruby (hence chef cookbooks are also easy). Chef cookbooks for managing containers are already there[2],[3]. Also, since ohai 7 release now its possible to run chef client inside a container without installing .... something like# inside host recipecontainer 'apache' dorun_list 'recipe[apache]' # invokes chef client inside container (though its installed only inside the host, not in the container)endthis will be fairly easy to build (and im using this approach for the time being).In short, if you are exploiting the full docker workflow features, go for it. If chrooting is only what you want (or even raw container), stick to chef. Things on raw lxc and chef is only going to get awesome!On Fri, Jan 24, 2014 at 1:38 AM, Rudi < " target="_blank"> > wrote:
Hi,While tinkering today with Chef Solo and Docker, there's a thought I really like to get others feedback on.Of the many facets of using both Chef and Docker there's one I'd like to focus on in this thread.Let's take for example a web server like Apache or Nginx.Option A)Use a well supported community chef cookbook to install and configure Apache/NginxOption B)Use the chef docker cookbook to pull down and install an apache/nginx containerand install a start up script for the container.So of all the pro's and con's to these two installation options the one I'd big advantage I getusing Option B instead of Option A is my web server is "chrooted" out of the box.So if there's some exploit for Apache/Nginx that comes out (and my web server has unrestricted access on the web)I'll get a good security buffer out of the box - the Docker isolated container (chroot).In a previous job, long before Chef existed, I used to to manual apache installs and chroot them.Recently I've stopped doing that by default, however; with the docker install method I'd get that feature back again.Any thoughts on this? Agree? Disagree? Am I missing something or thinking about this incorrectly?Thanks!
Archive powered by MHonArc 2.6.16.