簡體   English   中英

通過Capistrano部署時,捆綁程序在錯誤的目錄中執行

[英]Bundler executed in wrong directory when deploying via Capistrano

我目前正在嘗試將Rails應用程序部署到生產服務器,並且捆綁程序似乎在錯誤的目錄中執行

這是我的文件夾結構

app/
 - Mockups (contains HTML/CSS files)
 - app (contains actuals rails app)
 - (other files)

這是我目前的封頂文件

# Load DSL and Setup Up Stages
require 'capistrano/setup'
require 'capistrano/deploy'

require 'capistrano/rails'
require 'capistrano/bundler'
require 'capistrano/rvm'
require 'capistrano/puma'

# Loads custom tasks from `lib/capistrano/tasks' if you have any defined.
Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }

這是我當前的deploy.rb

# Change these
server '<ip>', port: 22, roles: [:web, :app, :db], primary: true

set :repo_url,        '<giturl>'
set :application,     'app'
set :user,            'deploy'
set :puma_threads,    [4, 16]
set :puma_workers,    0
set :bundle_gemfile,  "app/Gemfile"
set :bundle_flags,    '--deployment --quiet'

# Don't change these unless you know what you're doing
set :pty,             true
set :use_sudo,        false
set :stage,           :production
set :deploy_via,      :remote_cache
set :deploy_to,       "/home/#{fetch(:user)}/apps/#{fetch(:application)}"
set :puma_bind,       "unix://#{shared_path}/tmp/sockets/#{fetch(:application)}-puma.sock"
set :puma_state,      "#{shared_path}/tmp/pids/puma.state"
set :puma_pid,        "#{shared_path}/tmp/pids/puma.pid"
set :puma_access_log, "#{release_path}/log/puma.error.log"
set :puma_error_log,  "#{release_path}/log/puma.access.log"
set :ssh_options,     { forward_agent: true, user: fetch(:user), keys: %w(~/.ssh/id_rsa.pub) }
set :puma_preload_app, true
set :puma_worker_timeout, nil
set :puma_init_active_record, true  # Change to false when not using ActiveRecord

## Defaults:
# set :scm,           :git
# set :branch,        :master
# set :format,        :pretty
# set :log_level,     :debug
# set :keep_releases, 5

## Linked Files & Directories (Default None):
# set :linked_files, %w{config/database.yml}
set :linked_dirs,  %w{bin log tmp/pids tmp/cache tmp/sockets vendor/bundle public/system}

namespace :puma do
  desc 'Create Directories for Puma Pids and Socket'
  task :make_dirs do
    on roles(:app) do
      execute "mkdir #{shared_path}/tmp/sockets -p"
      execute "mkdir #{shared_path}/tmp/pids -p"
    end
  end

  before :start, :make_dirs
end

namespace :deploy do
  desc "Make sure local git is in sync with remote."
  task :check_revision do
    on roles(:app) do
      unless `git rev-parse HEAD` == `git rev-parse origin/master`
        puts "WARNING: HEAD is not the same as origin/master"
        puts "Run `git push` to sync changes."
        exit
      end
    end
  end

  desc 'Initial Deploy'
  task :initial do
    on roles(:app) do
      before 'deploy:restart', 'puma:start'
      invoke 'deploy'
    end
  end

  desc 'Restart application'
  task :restart do
    on roles(:app), in: :sequence, wait: 5 do
      invoke 'puma:restart'
    end
  end

  before :starting,     :check_revision
  after  :finishing,    :compile_assets
  after  :finishing,    :cleanup
  after  :finishing,    :restart
end

# ps aux | grep puma    # Get puma pid
# kill -s SIGUSR2 pid   # Restart puma
# kill -s SIGTERM pid   # Stop puma

我的錯誤日志表明,當我使用cap production deploy:initial (或僅為此deploy ),一切正常,直到必須執行捆綁程序為止。

Bundler在“ app”文件夾中執行,該文件夾包含子文件夾“ Mockups”(HTML / CSS),“ app”(實際rails app)和其他文件。

有沒有一種方法可以告訴捆綁程序,它應該更深入文件夾中以執行所有捆綁程序相關的任務?

嗨,您可能需要設置發布路徑,否則它將不知道文件在哪里。

set :bundle_gemfile, -> { release_path.join('app/Gemfile') } 

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM