Puppet Class: docker::profile::build_examples

Defined in:
manifests/profile/build_examples.pp

Overview

Parameters:

  • ensure (Variant[Boolean,String]) (defaults to: present)


1
2
3
4
5
6
7
8
9
10
11
12
13
14
# File 'manifests/profile/build_examples.pp', line 1

class docker::profile::build_examples (

  Variant[Boolean,String] $ensure              = present,

) {

  include ::docker

  # Run, in command mode, a container based on official jenkins image
  ::docker::tp_build { 'memcached': 
    ensure           => $ensure,
  }

}