I have created in bitbucket a private repo from my local app.
I have made the first deploy in my linode vps from my local app with #set :deploy_via, :copy
I want make a fast deployment with set :deploy_via, :remote_cache from my bitbucket repository.
For example if I change a file or add a image to my web app then I need cap deploy with capistrano for changes.
This is my deploy.rb
I use capistrano, and I have this recipe in deploy.rb file that working fine from my local repository.
$:.unshift(File.expand_path('./lib', ENV['rvm_path'])) # Add RVM's lib directory to the load pathe
require "rvm/capistrano" # Load RVM's capistrano plugin.
require "bundler/capistrano"
set :rvm_ruby_string, 'ruby-1.9.2-p318@global'
set :rvm_type, :user
set :application, "app.com"
set :user, 'myuser'
set :repository, "#{user}@ip.ip.ip.ip:~/app"
ssh_options[:forward_agent] = true
set :scm, :git
set :use_sudo, false
set :keep_releases, 1
set :deploy_to, "~/#{application}"
#set :deploy_via, :copy
set :deploy_via, :remote_cache
role :web, "ip.ip.ip.ip" # Your HTTP server, Apache/etc
role :app, "ip.ip.ip.ip" # This may be the same as your `Web` server
role :db, "ip.ip.ip.ip", :primary => true # This is where Rails migrations will run
load 'deploy/assets'
I dont want do full deploy again in linode. Only I want update the changes in linode.
How can I do a fast deploy for update app in linode from my private repository on bitbucket?