前提・実現したいこと
Dokcerで作成したRailsアプリをCapistranoを用いてEC2へのデプロイしたい。
ssh-agentを設定しています。
Docker-composeを使ってコンテナを構築しており、そちらは問題なく動いており、アプリにもブラウザでアクセスできます。
発生している問題・エラーメッセージ
docker-compose run web bundle exec cap production deployの結果
SSHKit::Runner::ExecuteError: Exception while executing as ec2-use
該当のソースコード
Capfile
require "capistrano/setup" require "capistrano/deploy" require 'capistrano/scm/git' install_plugin Capistrano::SCM::Git # add requires require 'capistrano/bundler' require 'capistrano/rbenv' require 'capistrano/rails/assets' require 'capistrano/rails/migrations' require 'capistrano/puma' # Load custom tasks from `lib/capistrano/tasks` if you have any defined Dir.glob("lib/capistrano/tasks/*.rake").each { |r| import r }
deplay/production.rb
server 'ipアドレス', user: 'ec2-user', roles: %w{app web db}
gemfile
group :development do # Access an interactive console on exception pages or by calling 'console' anywhere in the code. gem 'web-console', '>= 3.3.0' gem 'listen', '>= 3.0.5', '< 3.2' # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring gem 'spring' gem 'spring-watcher-listen', '~> 2.0.0' gem 'capistrano' gem 'capistrano-rails' gem 'capistrano3-puma' gem 'capistrano-rbenv' end
deplay.rb
lock "~> 3.15.0" set :application, "WebWorks" set :repo_url, "gitのURL" set :deploy_to, "/home/ec2-user/WebWorks" set :rbenv_ruby, '2.6.3' set :linked_files, %w{config/master.key .env} append :linked_dirs, "log", "public", "tmp"
試したこと
ssh-add -lの結果(一部変更してます)
2048 SHA256:Qd+lACQZuKv7VnDTS3UzWt3zb8Hm4i0o6QqdFa8 /Users/toki/.ssh/Works.pem (RSA) 3072 SHA256:R4TFciCcDGtb4xBmG5kj6/CLTS1/Osg+XyyQ6IUk lb.s123112@gmail.com (RSA)
ls -la ~/.ssh/の結果は以下です。
total 56 drwx------ 9 tomoki staff 288 1 7 18:28 . drwxr-xr-x+ 57 tomoki staff 1824 1 19 23:37 .. -rw-------@ 1 tomoki staff 1696 3 15 2020 LovelyBaby.pem -rw-------@ 1 tomoki staff 1700 1 7 15:35 WebWorks-aws.pem -rw-r--r-- 1 tomoki staff 121 1 19 23:26 config -rw------- 1 tomoki staff 2655 1 8 18:44 id_rsa -rw-r--r-- 1 tomoki staff 572 1 8 18:44 id_rsa.pub -rw-r--r-- 1 tomoki staff 2244 1 7 20:10 known_hosts -rw-------@ 1 tomoki staff 1696 1 30 2020 practice-aws.pem
あなたの回答
tips
プレビュー