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

More than 3 years have passed since last update.

Dockerとdocker-composeを使ったRails APIモードの環境構築

Last updated at Posted at 2021-03-15

Dockerとdocker-composeを使い、Rails6をAPIモードで動かす環境を構築しました。最後に動作確認もしています。


前提

Docker & docker-composeをインストール済み

動作環境

  • macOS Catalina 10.15.7
  • Ruby 2.7.1
  • Ruby on Rails 6.0.3
  • Docker 20.10.2
  • docker-compose 1.27.4

ディレクトリを作成します。

mkdir rails_api_docker
cd rails_api_docker

GemfileとDockerfileを作成します。

Gemfile
source 'https://rubygems.org'

gem 'rails', '6.0.3'
Dockerfile
FROM ruby:2.7.1-alpine3.11

ENV BUNDLER_VERSION=2.1.4

WORKDIR /usr/src/app

COPY Gemfile .
COPY Gemfile.lock .

RUN apk update && \
    apk add --no-cache \
    shared-mime-info \
    linux-headers \
    libxml2-dev \
    curl-dev \
    make \
    gcc \
    libc-dev \
    g++ \
    sqlite-dev \
    tzdata && \
    gem install bundler && \
    bundle install

COPY . .

EXPOSE 3000

インストールするbundlerのバージョンを指定するためにENVで環境変数を定義しています。


Dockerfileを元にDockerイメージを作成します。

docker build -t rails_api:6.0.3 .

作成したイメージからコンテナを起動し、Railsアプリケーションを作成します。

docker run --rm -v $(pwd):/usr/src/app -w /usr/src/app rails_api:6.0.3 rails new . --skip-keeps -M -C -S -J -B
オプション 説明
--skip-keeps .keepファイルを作成しない
-M Action Mailer, Action Mailbox, Action Text関連のファイルを作成しない
-C Action Cable関連のファイルを作成しない
-S Sprockets, Spring, listenを使用しない
-J JavaScript, turbolinksを使用しない
-B bundle installを実行しない

docker-compose.ymlを作成します。

docker-compose.yml
version: '3'
services: 
  api:
    build: .
    ports: 
      - '3000:3000'
    volumes: 
      - .:/usr/src/app
    tty: true
    command: ["rails", "server", "-b", "0.0.0.0"]

docker-composeでコンテナを起動します。

docker-compose up

localhost:3000にアクセスします。起動画面が表示されれば成功です。
スクリーンショット 2021-03-15 11.06.35.png


APIの動作確認

起動中のコンテナにログインします。

docker-compose exec api sh

今回は簡単にするためscaffoldを使ってcontrollerとmodelを作成します。

rails g scaffold User name:string

/db/seeds.rbに以下を追記してテストデータを作成します。

seeds.rb
User.create name: "Euclid"

DBを初期化し、テストデータを反映させます。

rails db:create
rails db:migrate
rails db:seed

/app/controllers/users_controller.rbのindexアクションを以下に変更します。

users_controller.rb
def index
  @users = User.all
  render json: @users
end

localhost:3000/usersにアクセスして以下が表示されれば成功です。

スクリーンショット 2021-03-15 11.32.19.png


読んでいただきありがとうございました!ご指摘やご意見などありましたらコメントしていただけると嬉しいです🐳

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