Dcoker環境でRailsアプリをHerokuへデプロイしようと
Dockerでherokuにデプロイ(Rails6、MySQL)を参考にして、
進めたのですが、heroku open後
We're sorry, but something went wrong. If you are the application owner check the logs for more information.
こちらが表示されてしまい、
デプロイできません。
参考サイトを進め、
$ heroku container:push web $ heroku container:release web $ heroku run rails db:migrate
上記までは特にエラーが出たりはしませんでした。
間違っているとは思いますが、
$ git push heroku
をしたら、
=== Fetching app code.. =!= Your app does not include a heroku.yml build manifest. To deploy your app, either create a heroku.yml: https://devcenter.heroku.com/articles/build-docker-images-heroku-yml Or change your stack by running: 'heroku stack:set heroku-20'
が表示され、
heroku.ymlを作成してくださいと表示されます。
どのサイトをみても、Docker,Rails6,MySQLの組み合わせで
heroku.ymlを作る記事がないので、作成すると余計に悪くなるかなと思ってやっておりません。
Dcokerなどにお詳しい方、ご教授お願いできませんでしょうか。
docker-compose.yml version: '3' services: db: image: mysql:8.0 environment: MYSQL_ROOT_PASSWORD: password MYSQL_DATABASE: root cap_add: # 追加 - SYS_NICE ports: - '4306:3306' command: --default-authentication-plugin=mysql_native_password volumes: - ./tmp/db:/var/lib/mysql/data web: build: . environment: # JST変更 TZ: "Asia/Tokyo" # JST変更 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 stdin_open: true tty: true volumes: mysql-data: driver: local
Dockerfile FROM ruby:2.6 RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \ && apt-get update -qq \ && apt-get install -y nodejs yarn \ && mkdir /myapp WORKDIR /myapp COPY Gemfile /myapp/Gemfile COPY Gemfile.lock /myapp/Gemfile.lock RUN bundle install COPY . /myapp 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"]
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 "$@"
database.yml default: &default adapter: mysql2 encoding: utf8mb4 pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> username: <%= ENV.fetch("MYSQL_USERNAME", "root") %> password: <%= ENV.fetch("MYSQL_PASSWORD", "password") %> host: <%= ENV.fetch("MYSQL_HOST", "db") %> development: <<: *default database: myapp_development test: <<: *default database: myapp_test production: <<: *default database: myapp_production username: myapp password: <%= ENV['MYAPP_DATABASE_PASSWORD'] %>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。