Created
December 17, 2013 17:27
-
-
Save odewahn/8008965 to your computer and use it in GitHub Desktop.
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
ENV['LANGUAGE'] = ENV['LANG'] = ENV['LC_ALL'] = "en_US.UTF-8" | |
include_recipe "apt" | |
include_recipe "ruby_build" | |
include_recipe "rbenv::user" | |
include_recipe "rbenv::vagrant" | |
include_recipe "postgresql::server" | |
include_recipe "docker::default" | |
include_recipe "docker::upstart" | |
include_recipe "redisio::install" | |
include_recipe "redisio::enable" | |
include_recipe "nodejs" | |
rbenv_gem "bundler" do | |
rbenv_version "1.9.3-p448" | |
user node[:user] | |
version "1.3.5" | |
action :install | |
end | |
# enable the the docker.conf file to enable the docker API | |
group "docker" do | |
action :modify | |
members "vagrant" | |
append true | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment