3
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?

Qiita株式会社Advent Calendar 2024

Day 12

Rails の環境を Docker で作る

Last updated at Posted at 2024-12-12

Rails の環境が欲しくなった

  • ちょうどいいので,8 で環境を作ってみることにした

準備

rails-new コマンドが打ちたい

rails-new コマンドがあるらしい.これは,どこか(/usr/local/bin とか)に入れてしまっていいのかもしれない.
そのうち Homebrew とかに入るだろう

$ mkdir sample_rails
$ cd sample_rails

# https://github.com/rails/rails-new/releases
$ curl -LO https://github.com/rails/rails-new/releases/download/v0.4.1/rails-new-x86_64-apple-darwin.tar.gz
$ tar xf rails-new-x86_64-apple-darwin.tar.gz
$ rm rails-new-x86_64-apple-darwin.tar.gz
$ ./rails-new --version
rails-new 0.4.1

いつのまにか,rails new 時に Dockerfile とか 作ってくれるようになってた.

$ ./rails-new --ruby-version 3.3.6 --rails-version 8.0.0 . --database=mysql --devcontainer

サーバーを起動する

  • devcontainer をインストールして起動する
$ npm install -g @devcontainers/cli
$ devcontainer --version
0.72.0
$ devcontainer up --workspace-folder .
$ devcontainer exec --workspace-folder . bundle install
$ devcontainer exec --workspace-folder . bundle exec rails server -b 0.0.0.0
^C

$ docker compose -f .devcontainer/compose.yaml stop

とりあえず

とりあえず動いてそうだけど,時間空けちゃったのでよく覚えてない……

Refs

3
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
3
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?