$ docker-compose run --rm web yarn install --check-files
を叩いた時に、以下のようなエラーが発生
error *****@0.1.0: The engine "node" is incompatible with this module. Expected version "12.x". Got "10.15.2" error Found incompatible module. info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command.
試したこととして、以下2つです。
・node バージョンをv10.15.2やv12.0.0を変更
・yarn upgrade
解決方法をご教授ください。
よろしくお願い致します。
【補足情報】
docker-compose.yml
version: '3' services: db: build: context: . dockerfile: ./.docker/postgresql/Dockerfile volumes: - ./.docker/postgresql/volumes:/var/lib/postgresql/data environment: - DATABASE_USER=postgres - DATABASE_PASSWORD=password web: tty: true stdin_open: true build: context: . dockerfile: ./.docker/rails/Dockerfile command: bundle exec foreman start -f Procfile.dev ports: - "3000:3000" - "8000:8000" volumes: - .:/forple-pf - ./.docker/rails/volumes:/usr/local/bundle environment: - DATABASE_USER=postgres - DATABASE_PASSWORD=password - BUNDLE_APP_CONFIG="/forple-pf/.bundle" depends_on: - db
・node バージョンをv10.15.2やv12.0.0を変更
$ nvm install v10.15.2 $ nvm alias default v10.15.2
こちらで、再度、
docker-compose run --rm web yarn install --check-files
を試しましたが、同じエラーが発生したため、
$ nvm install v12.0.0 $ nvm alias default v12.0.0
こちらのバージョンをインストールして、再度、
docker-compose run --rm web yarn install --check-files
を試しましたが、同じエラーが発生致しました。
・yarn upgrade
$ yarn upgrade $ docker-compose run --rm web yarn install --check-files
こちらも試してみましたが、結果同じエラーが発生致しました。
回答1件
あなたの回答
tips
プレビュー