前提・実現したいこと
Dockerでrailsのアプリを作っています。
Docker上のMysqlのデータベースをPosticoで見れるようにしたいのですが、
接続中にエラーが発生します。
発生している問題・エラーメッセージ
接続しようとすると以下のようなエラー文が出ます。
server closed the connection unexpectedly This probably means the server terminated abnormally before or while processing the request.
######docker-compose.yml
version: '3' services: web: build: . command: bundle exec rails s -p 3000 -b '0.0.0.0' volumes: - .:/app ports: - 3000:3000 depends_on: - db db: image: mysql:5.7 volumes: - db-volume:/var/lib/mysql environment: MYSQL_ROOT_PASSWORD: password #追記した ports: - '5433:5432' volumes: db-volume:
######database.yml
default: &default adapter: mysql2 encoding: utf8 pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> username: root password: password host: db development: <<: *default database: app_development test: <<: *default database: app_test
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。