【Mac】Docker+rails6+MySQL에서의 환경 구축 완전판

환경



MacOS Big Sur 11.5.2
루비 3.0.2
rails 6.1.4
Docker 20.10.8
MySQL 8.0.23
디렉토리 myapp
모두 현재 (2021/09/06) 최신 버전입니다.

1. 준비할 파일



· Dockerfile
· Gemfile
· Gemfile.lock
· entrypoint.sh
· docker-compose.yml

Dockerfile
FROM ruby:3.0.2
RUN apt-get update -qq && apt-get install -y nodejs

# yarnパッケージ管理ツールをインストール
# https://classic.yarnpkg.com/en/docs/install/#debian-stable
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
RUN apt-get update && apt-get install yarn

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"]

여기서 yarn을 설치하는 것이 포인트입니다. 그렇지 않으면 나중에 webpacker를 설치할 수 없으며 오류가 발생합니다.

Gemfile
source 'https://rubygems.org'
  gem 'rails', '~>6'

Gemfile.lock은 비어있는 상태로 괜찮습니다.

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 "$@"

docker-compose.yml
version: "3"

services:
  db:
    image: mysql:8.0

    command: mysqld --default-authentication-plugin=mysql_native_password
    environment:
      MYSQL_USER: user
      MYSQL_PASSWORD: password
      MYSQL_ROOT_PASSWORD: password
    ports:
        - 3306:3306
    volumes:
      - ./tmp/db:/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'"
    environment:
      MYSQL_HOST: db
    volumes:
      - .:/myapp
    ports:
      - "3000:3000"
    depends_on:
      - db

2. 실행


$ docker-compose run web rails new . --force --no-deps --database=mysql


$ docker-compose build



여기서 database.yml을 편집합니다.

config/database.yml
default: &default
  adapter: mysql2
  encoding: utf8mb4
  pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
  username: root
  password: <%= ENV.fetch("MYSQL_ROOT_PASSWORD", "root") %>
  host: db

development:
  <<: *default
  database: myapp_development

test:
  <<: *default
  database: myapp_test

production:
  <<: *default
  database: myapp_production
  username: myapp
  password: <%= ENV['MYAPP_DATABASE_PASSWORD'] %>

비밀번호 등 설정 후 데이터베이스와 연결합니다.
$ docker-compose run web rake db:create


$ docker-compose up

끝나면 localhost:3000과 인터넷으로 검색하면 이 화면이 나옵니다.
그러면 환경 구축 성공입니다!



결론



미경험으로 게다가 초보자이므로 상당히 고생했습니다만 필요한 정보는 이상뿐이었습니다
혼자서도 많은 분들에게 도움이되면 기쁩니다.
【Mac】Docker+rails6+postgreSQL로의 환경 구축 완전판
PostgreSQL 버전도 만들었으므로 좋으면 참고로 해주세요!

좋은 웹페이지 즐겨찾기