docker-composeでRails6環境をrails newしたら途中で止まってしまった
「Quickstart: Compose and Rails」の手順に沿ってRails6をインストールしようとしたところ、git initまで実行したらコマンドが終了してしまい正しくrails newができない現象が起きた。
docker-compose run --rm app bundle exec rails new . --force --database=mysql
exist
identical README.md
identical Rakefile
identical .ruby-version
identical config.ru
identical .gitignore
identical Gemfile
run git init from "."
[[--skip-git]]オプションを追加してgit initを実行しないようにしたところ最後まで作成できた。
docker-compose run --rm app bundle exec rails new . --force --database=mysql --skip-git