こんにちは、Nanayakuです。
今回は、Develop TermでHerokuにアップするためにrails+postgresqlの環境構築を行ったので、その手順について解説します。
目次
下準備
Dockerfile
FROM ruby:2.6.3
RUN apt-get update -qq && apt-get install -y nodejs postgresql-client
RUN mkdir /myapp
WORKDIR /myapp
COPY Gemfile /myapp/Gemfile
COPY Gemfile.lock /myapp/Gemfile.lock
RUN bundle install
COPY . /myapp
# Add a script to be executed every time the container starts.
COPY entrypoint.sh /usr/bin/
RUN chmod +x /usr/bin/entrypoint.sh
ENTRYPOINT ["entrypoint.sh"]
EXPOSE 3000
# Start the main process.
CMD ["rails", "server", "-b", "0.0.0.0"]
docker-compose.yml
version: '3'
services:
db:
image: postgres
restart: always
environment:
POSTGRES_PASSWORD: example
volumes:
- ./postgres-date:/var/lib/postgresql/data
tty: true
web:
build: .
command: bash -c "rm -f tmp/pids/server.pid && bundle exec rails s -p 3000 -b '0.0.0.0'"
volumes:
- .:/myapp
ports:
- "3000:3000"
depends_on:
- db
tty: true
entrypoint.sh
#!/bin/bash
set -e
# Remove a potentially pre-existing server.pid for Rails.
rm -f /myapp/tmp/pids/server.pid
# Then exec the container's main process (what's set as CMD in the Dockerfile).
exec "$@"
Gemfile
source 'https://rubygems.org'
gem 'rails', '~>5.1.6'
Gemfile.lock
中身は空です。
アプリケーションの作成
以下のコマンドでアプリケーションを生成しました。
$ docker-compose run web rails new . --force --no-deps --database=postgresql
次のコマンドでDockerfile、docker-compose.ymlのイメージを作成します。
$ docker-compose build
データベースへの接続
railsコンテナとdbコンテナを接続させるために、config/database.ymlを、次のように変更します。
config/database.yml
default: &default
adapter: postgresql
encoding: utf8
host: db
username: postgres
password: example
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
メモ
docker-compose.ymlでpasswaordの「example」を環境変数のPOSTGRES_PASSWORDに格納しています。
環境変数に格納する書き方をしなければ、passwaordの部分を書かなくても大丈夫です。
データベースを作成する「$ docker-compose run web rake db:create」で、passwordを認証しないエラーが出たら確認してみてください。
変更後、コンテナを「$ docker-compose up」で起動し、「$ docker-compose run web rake db:create」でデータベースを作成します。
Gemの整理
Gemfileの変更・追記をして、buildしなおします。
ここは設定したいrailsのバージョンを書きます。
自分はrails:5.1.6にしようとしたのですが、セキュリティの問題で5.1.7のままにしました。
Gemfile
以下の5つのGemを追加しました。
- gem 'bootsnap', require: false
- gem 'bootstrap', '~> 4.3.1'
- gem 'devise'
- gem 'mini_racer'
- gem 'rubocop', require: false
「$ docker-compose run web bundle update」で、Gemfile.lockを更新し、
「$ docker-compose up -d --build」で、bundle install(Dockerfileに記入済み)を行い、コンテナを立ち上げます。
無事完了すると「localhost:3000」で画像のような画面が出ます。
今回の開発環境
Docker version:19.03.1
docker-compose version:1.24.1
ruby version:2.6.3
rails version:5.1.7
最後に
今回作成したプログラムはGitHubにアップしておいたので、よかったら見てください。
https://github.com/sabakan789/Paralink
備忘録がわりに作ったので、間違っている所とかあったら、コメントくれると嬉しいです。