Deploying Docker Containers with Puppet
A guide to managing Docker container lifecycles using Puppet's `docker` resource type, covering image pulling, container execution, and upgrades for MariaDB.
How to Install, Upgrade or Uninstall Docker with Puppet
class { 'docker':
use_upstream_package_source => false,
version => '17.09.0~ce-0~debian',
}class { 'docker':
ensure => absent
}How to Build or Pull Docker Images with Puppet
How to Deploy Containers with Puppet
References
Last updated
Was this helpful?

