0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

dockerでrails new する one liner

Posted at

これはなに

dockerrails new するコマンドラインの備忘メモ

docker run --rm -v $(pwd):/app ruby:3.3 bash -c "gem install rails; cd /app; rails new -B -d mysql <project-name>"

メモ

-v $(pwd):/app
コマンドを実行するカレントディレクトリを /app にマウントする
このディレクトリ直下に、 <project_name> が作成される。

ruby:3.3
使用するdockerイメージ。
ruby 公式からバージョンを選択

gem install rails;
ここで、rails をインストールする。
必要に応じて、optionを指定

rails new -B -d mysql;
ここで、 rails new を実行。
dbmysql を指定

<projet-name>
作成したい project-name

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?