初心者です
dockerとrailsを使って投稿アプリの作成をしようと考えています
そこでdeviceのgemを使いたいと考えて、
[Docker使ったRails環境でdeviseを導入する手順](https://qiita.com/niki_cat_0714/items/432fc60358036c0c2936)
発生している問題
hoshie-4.1.0はダウンロードしていますし、gemfile.lockに書いてあるバージョンも間違っていないです
ですがこちらのコマンドを実行したときに
docker-compose exec web rails g migration add_columns_to_users provider uid username
(きちんとdocker-compse run web bundle installもやってます)
Could not find hashie-4.1.0 in any of the sources Run `bundle install` to install missing gems.
がこうなっていまいます
該当のソースコード
gemfile
1source 'https://rubygems.org' 2git_source(:github) { |repo| "https://github.com/#{repo}.git" } 3 4ruby '2.6.5' 5 6# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' 7gem 'rails', '~> 5.2.2' 8# Use mysql as the database for Active Record 9gem 'mysql2', '>= 0.4.4', '< 0.6.0' 10# Use Puma as the app server 11gem 'puma', '~> 3.11' 12# Use SCSS for stylesheets 13gem 'sass-rails', '~> 5.0' 14# Use Uglifier as compressor for JavaScript assets 15gem 'uglifier', '>= 1.3.0' 16# See https://github.com/rails/execjs#readme for more supported runtimes 17# gem 'mini_racer', platforms: :ruby 18gem 'devise' 19gem 'omniauth', '~> 1.9', '>= 1.9.1' 20gem 'hashie', '~> 4.1.0' 21# Use CoffeeScript for .coffee assets and views 22gem 'coffee-rails', '~> 4.2' 23# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks 24gem 'turbolinks', '~> 5' 25# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder 26gem 'jbuilder', '~> 2.5' 27# Use Redis adapter to run Action Cable in production 28# gem 'redis', '~> 4.0' 29# Use ActiveModel has_secure_password 30gem 'bcrypt', '~> 3.1.16' 31# Use ActiveStorage variant 32# gem 'mini_magick', '~> 4.8' 33 34# Use Capistrano for deployment 35# gem 'capistrano-rails', group: :development 36 37# Reduces boot times through caching; required in config/boot.rb 38gem 'bootsnap', '>= 1.1.0', require: false 39 40group :development, :test do 41 # Call 'byebug' anywhere in the code to stop execution and get a debugger console 42 gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] 43end 44 45group :development do 46 # Access an interactive console on exception pages or by calling 'console' anywhere in the code. 47 gem 'web-console', '>= 3.3.0' 48 gem 'listen', '>= 3.0.5', '< 3.2' 49 # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring 50 gem 'spring' 51 gem 'spring-watcher-listen', '~> 2.0.0' 52end 53 54group :test do 55 # Adds support for Capybara system testing and selenium driver 56 gem 'capybara', '>= 2.15' 57 gem 'selenium-webdriver' 58 # Easy installation and use of chromedriver to run system tests with Chrome 59 gem 'chromedriver-helper' 60end 61 62# Windows does not include zoneinfo files, so bundle the tzinfo-data gem 63gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] 64
dockerfile
1FROM ruby:2.6.5 2 3# 必要なパッケージのインストール(基本的に必要になってくるものだと思うので削らないこと) 4RUN apt-get update -qq && \ 5 apt-get install -y build-essential \ 6 libpq-dev \ 7 nodejs 8 9# 作業ディレクトリの作成、設定 10RUN mkdir /app_name 11##作業ディレクトリ名をAPP_ROOTに割り当てて、以下$APP_ROOTで参照 12ENV APP_ROOT /app_name 13WORKDIR $APP_ROOT 14 15# ホスト側(ローカル)のGemfileを追加する(ローカルのGemfileは【3】で作成) 16ADD ./Gemfile $APP_ROOT/Gemfile 17ADD ./Gemfile.lock $APP_ROOT/Gemfile.lock 18 19# Gemfileのbundle install 20RUN bundle install 21ADD . $APP_ROOT
以下、docker-compoe.yml
docker
1services: 2 db: 3 image: mysql:5.7 4 environment: 5 MYSQL_ROOT_PASSWORD: password 6 MYSQL_DATABASE: root 7 ports: 8 - "3306:3306" 9 10 web: 11 build: . 12 command: rails s -p 3000 -b '0.0.0.0' 13 volumes: 14 - .:/app_name 15 ports: 16 - "3000:3000" 17 links: 18 - db
試したこと
gem update --system
を実行してrailsのアップデートをしました。
もう一つは、hashieを一回アンインストールして再インストールしたのですが効果なしです
bundel installもしてみました。以下がその結果です
gemfile.lockの中身を全部削除してその後にdocker-compose run web bundle install
をしてみましたがかわりませんでした。
補足情報(FW/ツールのバージョンなど)
ruby 2.6.5
rails 5.2.2
mysql5.7
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。