Announcing a Puppet module for Dokku
I am excited to announce that I published a Puppet module for installing Dokku. Dokku is a great tool for easily hosting and deploying projects. It's basically a copy of Heroku that can be installed on Ubuntu 14.04. I recommend Digital Ocean for $5 a month.
With Puppet and this module, you can declaratively install Dokku.
Links:
- https://forge.puppetlabs.com/rchrd2/dokku
- https://github.com/rchrd2/puppet-dokku
Installation
puppet module install rchrd2-dokku
Usage
node web {
# install dokku
class {'dokku':
version => 'v0.3.12',
}
# install dokku plugins
dokku::plugin { "dokku-rebuild":
source => "https://github.com/scottatron/dokku-rebuild.git",
version => "master",
}
dokku::plugin { "dokku-pg-plugin":
source => "https://github.com/rchrd2/dokku-pg-plugin.git",
version => "master",
}
}