前提・実現したいこと
WindowsでDocker+Rails(MySQL)環境を作りたいです。
現在、下の記事を参考に環境構築を進めているのですが、【4. データベースを作成する】の段階で躓いています。
https://qiita.com/makicamel/items/af2cdbdffe65eaf5d24d
$ docker-compose run web rails db:createを実行したところ、以下のエラー文が吐き出されました。
発生している問題・エラーメッセージ
Creating rails_practice_web_run ... done Could not find gem 'mysql2 (< 0.6.0, >= 0.4.4)' in any of the gem sources listed in your Gemfile. Run `bundle install` to install missing gems.
該当のソースコード
Gemfile
1source 'https://rubygems.org' 2git_source(:github) { |repo| "https://github.com/#{repo}.git" } 3 4ruby '2.5.1' 5 6# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' 7gem 'rails', '~> 5.2.1' 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 18 19# Use CoffeeScript for .coffee assets and views 20gem 'coffee-rails', '~> 4.2' 21# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks 22gem 'turbolinks', '~> 5' 23# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder 24gem 'jbuilder', '~> 2.5' 25# Use Redis adapter to run Action Cable in production 26# gem 'redis', '~> 4.0' 27# Use ActiveModel has_secure_password 28# gem 'bcrypt', '~> 3.1.7' 29 30# Use ActiveStorage variant 31# gem 'mini_magick', '~> 4.8' 32 33# Use Capistrano for deployment 34# gem 'capistrano-rails', group: :development 35 36# Reduces boot times through caching; required in config/boot.rb 37gem 'bootsnap', '>= 1.1.0', require: false 38 39group :development, :test do 40 # Call 'byebug' anywhere in the code to stop execution and get a debugger console 41 gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] 42end 43 44group :development do 45 # Access an interactive console on exception pages or by calling 'console' anywhere in the code. 46 gem 'web-console', '>= 3.3.0' 47 gem 'listen', '>= 3.0.5', '< 3.2' 48 # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring 49 gem 'spring' 50 gem 'spring-watcher-listen', '~> 2.0.0' 51end 52 53group :test do 54 # Adds support for Capybara system testing and selenium driver 55 gem 'capybara', '>= 2.15' 56 gem 'selenium-webdriver' 57 # Easy installation and use of chromedriver to run system tests with Chrome 58 gem 'chromedriver-helper' 59end 60 61# Windows does not include zoneinfo files, so bundle the tzinfo-data gem 62gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] 63
試したこと
「足りないgemをインストールするためにbundle installを実行しろや!!」と怒られたのでbundle installを実行したところ、以下の文が返ってきました。
Your Ruby version is 2.6.6, but your Gemfile specified 2.5.1
「君のバージョンは2.6.6だけど、Gemfileさんのバージョンは2.5.1だね!!」と言われたので、
ホストOSに入っているrubyのバージョンとGemfileに記載したrubyのバージョンが違うとbundle installが実行できないのかな?と思い、Gemfileの記載をruby '2.6.6'に変更してbundle installを実行し直しました。
再度$ docker-compose run web rails db:createを実行すると、
Creating rails_practice_web_run ... done
Your Ruby version is 2.5.1, but your Gemfile specified 2.6.6
「君のバージョンは2.5.1だけど、Gemfileさんのバージョンは2.6.6だね!!」と言われました。
彼は天邪鬼なのでしょうか。。。
補足情報(FW/ツールのバージョンなど)
Docker初学者で右も左も分からない状態です。
様々な記事を調べてみたのですが解決できませんでした。お力添え頂けますと幸いです。
あなたの回答
tips
プレビュー