Contents

Building Puppet-based applications inside Docker

Contents

Creating a Docker Dockerfile to build an application is pretty easy. But what if you already have a large collection of Puppet modules (or Chef cookbooks) that you want to use to build your applications? We’re going to see how easy it is to make use of those modules inside a Dockerfile.1

We’re first going to build a image that has Docker apps with Puppet installed. We’ll also add Tim Sharpe’s very cool Librarian-Puppet to the image. Librarian-Puppet is a bundler for your Puppet modules. You can use it to select and install modules from GitHub or the Puppet Labs Forge.

Let’s create a Dockerfile to build our Puppet image.2

1
2
3
4
5
6
7
FROM ubuntu:12.10
MAINTAINER James Turnbull "james@lovedthanlost.net"

RUN apt-get -y update
RUN apt-get -y install rubygems
RUN echo "gem: --no-ri --no-rdoc" > ~/.gemrc
RUN gem install puppet librarian-puppet

This Dockerfile will use an Ubuntu-based image and then install Puppet and Librarian-Puppet via RubyGems.

To build this image we run:

1
$ sudo docker build -t="jamtur01/puppetbase" .

Here we’ve built a new image called jamtur01/puppetbase. We’re going to use this image as the basis for our new application image.

Next we need to create a Puppetfile file which Librarian-Puppet uses to install the required Puppet modules. As our example we’re going to install a basic Nginx server.

1
2
mod "nginx",
  :git => "https://github.com/jfryman/puppet-nginx"

The Puppetfile tells Librarian-Puppet to install the puppet-nginx module from GitHub.

Now we need to create another Dockerfile for our application image.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
FROM jamtur01/puppetbase
MAINTAINER James Turnbull "james@lovedthanlost.net"

RUN apt-get -y -q install wget git-core
ADD Puppetfile /
RUN librarian-puppet install
RUN puppet apply --modulepath=/modules -e "class { 'nginx': }"
RUN echo "daemon off;" >> /etc/nginx/nginx.conf
EXPOSE 80
CMD ["nginx"]

This Dockerfile uses the jamtur01/puppetbase image we’ve just created. It adds our local Puppetfile file to the root of the image and then runs librarian-puppet install to install our required modules (by default into /modules).

We then install Nginx via the puppet-nginx module using the puppet apply command. This runs Puppet locally on the host (i.e. without a client-server Puppet installation).

In this image we’re just installing Nginx itself. We could also install virtual hosts or a web application or anything else that the Nginx module supports.

We can now build our application image like so:

1
$ sudo docker build -t="jamtur01/nginx" .

Finally let’s launch a container from it.

1
2
$ sudo docker run -P -d jamtur01/nginx
fd461a1418c6

We’ve launched a new container with the ID of fd461a1418c6, run it daemonized and told it to open any exposed ports, in our case port 80 that we EXPOSE‘ed in the Dockerfile. Let’s check the container and see what port it has mapped to Nginx.

1
2
$ sudo docker port fd461a1418c6 80
0.0.0.0:49158

Now let’s browse to port 49158 to see if Nginx is running.

{:.center} /images/posts/2013/12/nginx.png

Woot! We’ve got Nginx installed via Puppet. You could easily repeat this process for any Puppet-based (or other CM tool) application or infrastructure.3


  1. This is a somewhat short-term hacky implementation. When Docker is more pluggable this will be a lot easier. Expect to see that sort of plugin support in the 1.0 release. ↩︎

  2. We could easy do the same thing with Chef too. ↩︎

  3. For other thoughts on Docker and CM see this↩︎