Testing Docker Puppet Module
This module https://github.com/garethr/garethr-docker lets you install and control Docker using Puppet.
For example this Vagrant setup spins up an Ubuntu VM and then using the Docker module spins up a Jenkins build server Docker container with a few simple commands;
Doodle’s Geek Monkey by Alastair Montgomery
For example this Vagrant setup spins up an Ubuntu VM and then using the Docker module spins up a Jenkins build server Docker container with a few simple commands;
include docker
docker::image { 'jenkins': }
docker::run { ‘some-jenkins’:
image => ‘jenkins’,
ports => ‘8080:8080’,
volumes => ‘/vagrant/jenkins’,
use_name => true,
}
Doodle’s Geek Monkey by Alastair Montgomery