すでに開発を進めているアプリをDockerで利用したいのですが、うまく構築できません。
docker-compose up
でdbサーバーは立ち上がるのですが、docker ps -a
で確認するとwebサーバーがExitになっているので、docker-compose.yml
のwebサーバー側の設定が間違っているのだと思うのですが、どこがおかしいのかわかりません。
ググってQiitaなど様々な記事を読みましたが、新規アプリをDocker環境で開発するやり方ばかりで既存のアプリの環境構築についてはあまり見あたらず、見つかってもそれらを参考にやってもうまくできませんでした。
環境
Ruby 2.7.1
Rails 6.0.3.3
MYSQL 8.0.22
##やったこと
以下の手順で進めました。
0. 番号リスト開発中のディレクトリにDockerfile
, docker-compose.yml
, entrypoint.sh
を追加
$ docker-compose build
コマンド$ docker-compose up -d
コマンド
各ファイルは以下の通りです。
Doclerfile
1FROM ruby:2.7.1 2 3RUN apt update -qq \ 4 && apt install -y nodejs npm \ 5 && npm install -g yarn \ 6 && mkdir /myapp 7 8# 作業ディレクトリを/myappに指定 9WORKDIR /myapp 10 11# ローカルのGemfileをDokcerにコピー 12COPY Gemfile* /myapp/ 13 14RUN bundle install 15 16# カレントディレクトリの全ファイルをコピー 17COPY . /myapp 18 19COPY entrypoint.sh /usr/bin/ 20RUN chmod +x /usr/bin/entrypoint.sh 21ENTRYPOINT ["entrypoint.sh"] 22EXPOSE 3000 23 24CMD ["rails", "server", "-b", "0.0.0.0"]
docker-compose.yml
version: '3' services: db: image: mysql:8.0.22 ports: - '3306:3306' volumes: - mysql_data:/var/lib/mysql # データの永続化 command: --default-authentication-plugin=mysql_native_password # 認証方式を8系以前のものにする。 environment: MYSQL_ROOT_PASSWORD: pass web: build: . # Dockerfile のあるディレクトリのパスを指定 command: - bash -c "rm -f tmp/pids/server.pid && bundle exec rails s -p 3000 -b '0.0.0.0'" ports: - '3000:3000' # localhostの3000ポートでアクセスできるようにする volumes: - .:/myapp # アプリケーションファイルの同期 depends_on: - db stdin_open: true tty: true volumes: mysql_data: driver: local
dbとの接続に問題があるのかもしれません。
database.ymlは以下の通りです。
database.yml
default: &default adapter: mysql2 encoding: utf8mb4 pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> username: 'user' password: 'pass' host: db development: <<: *default database: myapp_development host: <%= ENV.fetch("MYSQL_HOST") { 'localhost' } %>
docker-compose up
すると以下のメッセージが表示されます。またdocker-compose up -d
としてdocker ps -a
で確認するとmyapp_db_1
という名のコンテナはUpとなる一方、myapp_web_1
はExitとなっており、うまく起動できていないようです。
myapp_db_1 is up-to-date Starting myapp_web_1 ... done Attaching to myapp_db_1, myapp_web_1 web_1 | /usr/bin/entrypoint.sh: line 8: /myapp/bash -c "rm -f tmp/pids/server.pid && bundle exec rails s -p 3000 -b '0.0.0.0'": No such file or directory db_1 | 2021-01-21 12:10:37+00:00 [Note] [Entrypoint]: Entrypoint script for MySQL Server 8.0.22-1debian10 started. db_1 | 2021-01-21 12:10:37+00:00 [Note] [Entrypoint]: Switching to dedicated user 'mysql' db_1 | 2021-01-21 12:10:37+00:00 [Note] [Entrypoint]: Entrypoint script for MySQL Server 8.0.22-1debian10 started. db_1 | 2021-01-21T12:10:38.485665Z 0 [System] [MY-010116] [Server] /usr/sbin/mysqld (mysqld 8.0.22) starting as process 1 db_1 | 2021-01-21T12:10:38.505503Z 1 [System] [MY-013576] [InnoDB] InnoDB initialization has started. db_1 | 2021-01-21T12:10:39.023666Z 1 [System] [MY-013577] [InnoDB] InnoDB initialization has ended. db_1 | 2021-01-21T12:10:39.328829Z 0 [System] [MY-011323] [Server] X Plugin ready for connections. Bind-address: '::' port: 33060, socket: /var/run/mysqld/mysqlx.sock db_1 | 2021-01-21T12:10:39.584548Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed. db_1 | 2021-01-21T12:10:39.584900Z 0 [System] [MY-013602] [Server] Channel mysql_main configured to support TLS. Encrypted connections are now supported for this channel. db_1 | 2021-01-21T12:10:39.589719Z 0 [Warning] [MY-011810] [Server] Insecure configuration for --pid-file: Location '/var/run/mysqld' in the path is accessible to all OS users. Consider choosing a different directory. db_1 | 2021-01-21T12:10:39.661184Z 0 [System] [MY-010931] [Server] /usr/sbin/mysqld: ready for connections. Version: '8.0.22' socket: '/var/run/mysqld/mysqld.sock' port: 3306 MySQL Community Server - GPL. db_1 | 2021-01-21T12:10:47.611982Z 0 [System] [MY-013172] [Server] Received SHUTDOWN from user <via user signal>. Shutting down mysqld (Version: 8.0.22). db_1 | 2021-01-21T12:10:48.817649Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.22) MySQL Community Server - GPL. db_1 | 2021-01-21 12:20:42+00:00 [Note] [Entrypoint]: Entrypoint script for MySQL Server 8.0.22-1debian10 started. db_1 | 2021-01-21 12:20:42+00:00 [Note] [Entrypoint]: Switching to dedicated user 'mysql' db_1 | 2021-01-21 12:20:42+00:00 [Note] [Entrypoint]: Entrypoint script for MySQL Server 8.0.22-1debian10 started. db_1 | 2021-01-21T12:20:43.556116Z 0 [System] [MY-010116] [Server] /usr/sbin/mysqld (mysqld 8.0.22) starting as process 1 db_1 | 2021-01-21T12:20:43.577491Z 1 [System] [MY-013576] [InnoDB] InnoDB initialization has started. db_1 | 2021-01-21T12:20:44.091555Z 1 [System] [MY-013577] [InnoDB] InnoDB initialization has ended. db_1 | 2021-01-21T12:20:44.452457Z 0 [System] [MY-011323] [Server] X Plugin ready for connections. Bind-address: '::' port: 33060, socket: /var/run/mysqld/mysqlx.sock db_1 | 2021-01-21T12:20:44.652641Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed. db_1 | 2021-01-21T12:20:44.653170Z 0 [System] [MY-013602] [Server] Channel mysql_main configured to support TLS. Encrypted connections are now supported for this channel. db_1 | 2021-01-21T12:20:44.658982Z 0 [Warning] [MY-011810] [Server] Insecure configuration for --pid-file: Location '/var/run/mysqld' in the path is accessible to all OS users. Consider choosing a different directory. db_1 | 2021-01-21T12:20:44.752157Z 0 [System] [MY-010931] [Server] /usr/sbin/mysqld: ready for connections. Version: '8.0.22' socket: '/var/run/mysqld/mysqld.sock' port: 3306 MySQL Community Server - GPL. myapp_web_1 exited with code 127
回答1件
あなたの回答
tips
プレビュー