お世話になっております。
下記の問題について知見がある方がいらっしゃいましたらご教示お願いします。
#起きている問題
AWS
環境でnginx
、unicorn
、mysql
をdocker
コンテナで構築しdocker-compose run app rails assets:precompile
実行時に、Yarn executable was not detected in the system.
と表示される。
$ docker-compose run app rails assets:precompile Starting coffee_app_db_1 ... done Yarn executable was not detected in the system.
#試したこと
####yarn
がインストールされていないとのことなので、Dockerfile
に追記。
Dockerfile
1FROM ruby:2.5.1 2RUN apt-get update -qq && \ 3 apt-get install -y apt-utils \ 4 build-essential \ 5 libpq-dev \ 6 nodejs \ 7 default-mysql-client \ 8 yarn ※ここを追記 9:
docker-compose build
成功後、docker-compose run app rails assets:precompile
で同様のエラーが発生してしまいます。
####コンテナに入ってyarnをインストール
root@da3aa33866d4:/# apt-get install yarn Reading package lists... Done Building dependency tree Reading state information... Done E: Unable to locate package yarn root@da3aa33866d4:/# yarn -v bash: yarn: command not found
コンテナに直接yarnをインストールしたところE: Unable to locate package yarn
が出力されました。
#関連ファイル
・docker-compose.yml
version: '2' services: app: build: context: . dockerfile: ./docker/rails/Dockerfile command: bundle exec unicorn_rails -c /var/www/rails/coffee_app/config/unicorn.conf.rb -D -E production # command: bundle exec rails s -p 3000 -b '0.0.0.0' ports: - '3000:3000' volumes: - /var/tmp - .:/coffee_app depends_on: - db extends: file: ./docker/mysql/password.yml service: password db: build: context: . dockerfile: ./docker/mysql/Dockerfile ports: - '3300:3306' volumes: - db_data:/var/lib/mysql extends: file: ./docker/mysql/password.yml service: password nginx: build: context: . dockerfile: ./docker/nginx/Dockerfile ports: - '88:80' volumes: - app volumes: db_data:
・Dockerfile(rails)
FROM ruby:2.5.1 RUN apt-get update -qq && \ apt-get install -y apt-utils \ build-essential \ libpq-dev \ nodejs \ default-mysql-client \ yarn RUN mkdir /coffee_app WORKDIR /coffee_app ADD Gemfile /coffee_app/Gemfile ADD Gemfile.lock /coffee_app/Gemfile.lock RUN bundle install -j4 ADD . /coffee_app EXPOSE 3000
・Dockerfile(mysql)
FROM mysql:8.0.17 RUN apt-get update && \ apt-get install -y apt-utils \ locales && \ rm -rf /var/lib/apt/lists/* && \ echo "ja_JP.UTF-8 UTF-8" > /etc/locale.gen && \ locale-gen ja_JP.UTF-8 ENV LC_ALL ja_JP.UTF-8 ADD ./docker/mysql/charset.cnf /etc/mysql/conf.d/charset.cnf ・nginx/Dockerfile(rails) FROM ruby:2.5.1 RUN apt-get update -qq && \ apt-get install -y apt-utils \ build-essential \ libpq-dev \ nodejs \ default-mysql-client \ yarn RUN mkdir /coffee_app WORKDIR /coffee_app ADD Gemfile /coffee_app/Gemfile ADD Gemfile.lock /coffee_app/Gemfile.lock RUN bundle install -j4 ADD . /coffee_app EXPOSE 3000
#環境
ruby 2.5.1
rails 5.1.6
docker version 19.03.6
docker-compose version 1.24.0
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/01 22:14
2020/06/03 09:37
2020/06/03 23:36
2020/06/04 00:03
2020/06/04 00:10
2020/06/04 00:17