前提・実現したいこと
Dockerを使ってrails6、postgresqlの開発環境を作成する必要があり、下記のqiitaを参考にしてみたのですが、docker buildでライブラリ(nodejs,postgresql-client)をインストールする際のエラーを自分で解決することができなく質問させてもらった経緯です。このエラーを解決する方法を知っている方がいれば教えていただきたいです????
発生している問題・エラーメッセージ
ubuntu
1~/sample_app$ docker-compose run web rails new . --force --no-deps --database=postgresql --skip-bundle 2Building web 3Step 1/15 : FROM ruby:2.6.5 4 ---> ad10dfbc638b 5Step 2/15 : RUN apt-get update -qq && apt-get install -y postgresql-client nodejs 6 ---> Running in f39c037aad52 7W: Failed to fetch http://deb.debian.org/debian/dists/buster/InRelease Temporary failure resolving 'deb.debian.org' 8W: Failed to fetch http://security.debian.org/debian-security/dists/buster/updates/InRelease Temporary failure resolving 'security.debian.org' 9W: Failed to fetch http://deb.debian.org/debian/dists/buster-updates/InRelease Temporary failure resolving 'deb.debian.org' 10W: Some index files failed to download. They have been ignored, or old ones used instead. 11Reading package lists... 12Building dependency tree... 13Reading state information... 14E: Unable to locate package postgresql-client 15E: Unable to locate package nodejs 16ERROR: Service 'web' failed to build : The command '/bin/sh -c apt-get update -qq && apt-get install -y postgresql-client nodejs' returned a non-zero code: 100
該当のソースコード
ファイル構成
sampleapp < Dockerfile,docker-compose.yml,Gemfile,Gemfile.lock,entrypoint.sh
Dockerfile
1FROM ruby:2.6.5 2 3# 必要なライブラリインストール 4RUN apt-get update -qq && apt-get install -y postgresql-client nodejs 5 6# yarnパッケージ管理ツールをインストール 7RUN apt-get update && apt-get install -y curl apt-transport-https wget && \ 8 curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \ 9 echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list && \ 10 apt-get update && apt-get install -y yarn 11 12# Node.jsをインストール 13RUN curl -sL https://deb.nodesource.com/setup_7.x | bash - && \ 14 apt-get install nodejs 15 16RUN mkdir /sample_app 17WORKDIR /sample_app 18COPY Gemfile /sample_app/Gemfile 19COPY Gemfile.lock /sample_app/Gemfile.lock 20RUN bundle install 21COPY . /sample_app 22 23COPY entrypoint.sh /usr/bin/ 24RUN chmod +x /usr/bin/entrypoint.sh 25ENTRYPOINT ["entrypoint.sh"] 26EXPOSE 3000 27 28CMD ["rails", "server", "-b", "0.0.0.0"]
↓docker-compose.yml
yml
1version: '3' 2services: 3 db: 4 image: postgres 5 volumes: 6 - ./tmp/db:/var/lib/postgresql/data 7 environment: 8 - POSTGRES_PASSWORD=password 9 web: 10 build: . 11 command: bash -c "rm -f tmp/pids/server.pid && bundle exec rails s -p 3000 -b '0.0.0.0'" 12 volumes: 13 - .:/sample_app 14 ports: 15 - "3000:3000" 16 depends_on: 17 - db
↓entrypoint.sh
sh
1#!/bin/bash 2set -e 3 4# Remove a potentially pre-existing server.pid for Rails. 5rm -f /sample_app/tmp/pids/server.pid 6 7# Then exec the container's main process (what's set as CMD in the Dockerfile). 8exec "$@"
Gemfile
1source 'https://rubygems.org' 2gem 'rails', '~> 6'
###試したこと
・dockerやdocker-composeをアンインストールしてインストールしたけどうまくいきませんでした。
・ubuntuをリセットして再度試したけどうまくいきませんでした。
補足情報(FW/ツールのバージョンなど)
[環境]
ubuntu 20.04(wsl:2)
Docker version 20.10.1, build 831ebea
docker-compose version 1.27.4, build 40524192
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。