-
Notifications
You must be signed in to change notification settings - Fork 26
Open
Description
Running on
- Vagrant 2.0.2 with chef_solo provisioner
- Berkfile with berks 7.0.2
- Chef client 14.1.12
- Host Windows 10 x64
- Guest Ubuntu Xenial 64
My vagrant file:
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/xenial64"
config.vm.provider :virtualbox do |vb|
vb.memory = 1536
end
config.vm.network :private_network, ip: "192.168.33.10"
config.vm.synced_folder "./sharetribe", "/var/www"
config.berkshelf.enabled = true
config.berkshelf.berksfile_path = "./cookbooks/sharetribe/Berksfile"
config.vm.provision :chef_solo do |chef|
chef.run_list = [
'recipe[nginx]',
'recipe[rubygems]',
'recipe[nodejs]',
'recipe[mariadb::server]',
'recipe[sphinx]'
]
chef.json = {
"nodejs" => {
"install_method" => "binary",
"version" => "7.8.0",
"binary" => {
"checksum" => "0bd86f2a39221b532172c7d1acb57f0b0cba88c7b82ea74ba9d1208b9f6f9697"
}
},
"mariadb" => {
}
# "passenger-nginx" => {
# "passenger" => {
# "version" => "4.0.53"
# },
# "apps" => [
# "name" => "sharetribe",
# "server_name" => "aquapp.dev www.aquapp.dev",
# "listen" => 80,
# "root" => "/var/www",
# "ruby_gemset" => "sharetribe",
# "app_env" => "development"
# ]
# }
}
end
endMetadata
Metadata
Assignees
Labels
No labels