Skip to content

Instantly share code, notes, and snippets.

@calum-github
Last active October 21, 2015 03:36
Show Gist options
  • Select an option

  • Save calum-github/af3cf948c6c91bf8c0ba to your computer and use it in GitHub Desktop.

Select an option

Save calum-github/af3cf948c6c91bf8c0ba to your computer and use it in GitHub Desktop.
puppet manifest
# Ensure we have docker running and enabled (starts at boot)
service {"docker":
ensure => running,
enable => true,
}
# Ensure we have docker installed and it is the required version.
package { "docker":
ensure => "1.7.1-115.el7",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment