Last active
October 21, 2015 03:36
-
-
Save calum-github/af3cf948c6c91bf8c0ba to your computer and use it in GitHub Desktop.
puppet manifest
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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