作業内容
ディレクトリ構成
myrailsapp/
├── Dockerfile
├── compose.yaml
├── entrypoint.sh
├── Gemfile
└── Gemfile.lock
ファイルの準備
Dockerfile
FROM ruby:3.1.2
RUN mkdir /app
WORKDIR /app
COPY Gemfile /app/Gemfile
COPY Gemfile.lock /app/Gemfile.lock
RUN gem update --system
RUN bundle update --bundler
RUN bundle install
COPY . /app
COPY entrypoint.sh /usr/bin/
RUN chmod +x /usr/bin/entrypoint.sh
ENTRYPOINT ["entrypoint.sh"]
EXPOSE 3000
CMD ["rails", "server", "-b", "0.0.0.0"]
compose.yaml
services:
db:
image: mysql/mysql-server:latest
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_ROOT_HOST: '%'
ports:
- "3306:3306"
volumes:
- db-volume:/var/lib/mysql
web:
build: .
command: bash -c "rm -f tmp/pids/server.pid && bundle exec rails s -p 3000 -b '0.0.0.0'"
volumes:
- .:/app
ports:
- "3000:3000"
depends_on:
- db
volumes:
db-volume:
entrypoint.sh
#!/bin/bash
set -e
rm -f /myapp/tmp/pids/server.pid
exec "$@"
Gemfile
source 'https://rubygems.org'
gem 'rails', '~>7.0.1'
Gemfile.lock
は空でよい。
Railsプロジェクト作成
注意:Compose V2
が有効になっていることを確認する。
docker compose run --rm web rails new . --force --no-deps --database=mysql
Dockerfileからイメージ作成
docker compose build
DB接続設定
config > database.yml > default
の記述を変更。
config/defaultdatabase.yml
# この箇所以外はそのままでよい。
default: &default
adapter: mysql2
encoding: utf8mb4
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
username: root
password: root
host: db
DB作成
docker compose run --rm web rails db:create
コンテナ起動
docker compose up
http://localhost:3000 にアクセス。Railsアプリが起動していることを確認する。
補足
Bundler
以下のイシューにある通り、Bundlerのバグにより正常にGemをインストールしてくれなかった。
イシューのスレッドにある通り、Bundlerをアップデートしてやることで解決。
Dockerfile
...
RUN gem update --system
RUN bundle update --bundler
...
MySQL
こちらを参照。