dockerにrailsの環境を構築しようとしているのですがうまくいきません
以下のサイトを参考に、
https://qiita.com/chisaki0606/items/a4b42af5c4735c94057a
にある
docker-compose run web rails new . --force --no-deps --database=postgresql --skip-bundle
を
やってみたのですが、
fileNOtfounderrorとdocker.errors.DockerException: Error while fetching server API version: ('Connection aborted.'
出てしまいます。
最初は、コマンドにあるpostgresql
の部分をmysqlに変えたらうまくいく行くかと思ってやってみたのですがそれでもうまくいきません
以下、docker-compose.yml
version: '3' services: db: image: postgres volumes: - ./tmp/db:/var/lib/postgresql/data environment: POSTGRES_PASSWORD: 'postgres' web: build: . 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
dockerfile
1FROM ruby:2.6.5 2 3RUN apt-get update -qq && apt-get install -y nodejs postgresql-client 4RUN mkdir /myapp 5WORKDIR /myapp 6COPY Gemfile /myapp/Gemfile 7COPY Gemfile.lock /myapp/Gemfile.lock 8RUN bundle install 9COPY . /myapp 10 11# Add a script to be executed every time the container starts. 12COPY entrypoint.sh /usr/bin/ 13RUN chmod +x /usr/bin/entrypoint.sh 14ENTRYPOINT ["entrypoint.sh"] 15EXPOSE 3000 16 17# Start the main process. 18CMD ["rails", "server", "-b", "0.0.0.0"]
以下、entrypoint.sh
entrypoint.sh
1#!/bin/bash 2set -e 3 4# Remove a potentially pre-existing server.pid for Rails. 5rm -f /myapp/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', '~>5'
gemfile.lockは空です
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。