前提・実現したいこと
RailsのアプリケーションでCircleCIを使おうと思ったのですが、CI側でRSpecを実行する際にデータベースのセットアップでエラーが出ました。
.circleci/config.ymlは https://circleci.com/docs/2.0/language-ruby/ を元に作りました。
発生している問題・エラーメッセージ
#!/bin/bash -eo pipefail # bundle exec rails db:create # bundle exec rails db:schema:load --trace could not translate host name "db" to address: Name or service not known Couldn't create 'book_manager_test' database. Please check your configuration. rails aborted! PG::ConnectionBad: could not translate host name "db" to address: Name or service not known
該当のソースコード
.circleci/config.yml
yml
1version: 2.1 # Use 2.1 to enable using orbs and other features. 2 3# Declare the orbs that we'll use in our config. 4# read more about orbs: https://circleci.com/docs/2.0/using-orbs/ 5orbs: 6 ruby: circleci/ruby@1.0 7 node: circleci/node@2 8 9jobs: 10 build: # our first job, named "build" 11 docker: 12 - image: cimg/ruby:2.6.6-node # use a tailored CircleCI docker image. 13 steps: 14 - checkout # pull down our git code. 15 - ruby/install-deps # use the ruby orb to install dependencies 16 # use the node orb to install our packages 17 # specifying that we use `yarn` and to cache dependencies with `yarn.lock` 18 # learn more: https://circleci.com/docs/2.0/caching/ 19 - node/install-packages: 20 pkg-manager: yarn 21 cache-key: 'yarn.lock' 22 23 rubocop: 24 docker: 25 - image: cimg/ruby:2.6.6-node # use a tailored CircleCI docker image. 26 environment: 27 RAILS_ENV: test 28 POSTGRES_HOST: 127.0.0.1 29 - image: circleci/postgres:9.5-alpine 30 environment: # add POSTGRES environment variables. 31 POSTGRES_USER: circleci-demo-ruby 32 POSTGRES_DB: rails_blog_test 33 POSTGRES_PASSWORD: '' 34 steps: 35 - checkout 36 - ruby/install-deps 37 - node/install-packages: 38 pkg-manager: yarn 39 cache-key: 'yarn.lock' 40 # Rubocop 41 - run: 42 name: Rubocop 43 command: bundle exec rubocop 44 45 test: # our next job, called "test" 46 # we run "parallel job containers" to enable speeding up our tests; 47 # this splits our tests across multiple containers. 48 # parallelism: 3 49 # here we set TWO docker images. 50 docker: 51 - image: cimg/ruby:2.6.6-node # this is our primary docker image, where step commands run. 52 - image: circleci/postgres:9.5-alpine 53 environment: # add POSTGRES environment variables. 54 POSTGRES_USER: postgres 55 POSTGRES_DB: rails_blog_test 56 POSTGRES_PASSWORD: password 57 # environment variables specific to Ruby/Rails, applied to the primary container. 58 environment: 59 BUNDLE_JOBS: '3' 60 BUNDLE_RETRY: '3' 61 PGHOST: 127.0.0.1 62 PGUSER: postgres 63 PGPASSWORD: password 64 RAILS_ENV: test 65 # A series of steps to run, some are similar to those in "build". 66 steps: 67 - checkout 68 - ruby/install-deps 69 - node/install-packages: 70 pkg-manager: yarn 71 cache-key: 'yarn.lock' 72 # Here we make sure that the secondary container boots 73 # up before we run operations on the database. 74 - run: 75 name: Wait for DB 76 command: dockerize -wait tcp://localhost:5432 -timeout 1m 77 - run: 78 name: Database setup 79 command: | 80 bundle exec rails db:create 81 bundle exec rails db:schema:load --trace 82 # Run rspec in parallel 83 - ruby/rspec-test 84 85# We use workflows to orchestrate the jobs that we declared above. 86workflows: 87 version: 2 88 build_and_test: # The name of our workflow is "build_and_test" 89 jobs: # The list of jobs we run as part of this workflow. 90 - build # Run build first. 91 - rubocop: 92 requires: 93 - build 94 - test: # Then run test, 95 requires: # Test requires that build passes for it to run. 96 - build # Finally, run the build job. 97
config/database.yml
yml
1default: &default 2 adapter: postgresql 3 encoding: unicode 4 host: db 5 username: postgres 6 password: password 7 pool: 5 8 9development: 10 <<: *default 11 database: book_manager_development 12 13test: 14 <<: *default 15 database: book_manager_test 16
Dockerfile
1FROM ruby:2.6 2 3RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ 4 && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list 5 6RUN apt-get update -qq && apt-get install -y nodejs postgresql-client yarn 7 8RUN mkdir /book_manager 9WORKDIR /book_manager 10COPY Gemfile /book_manager/Gemfile 11COPY Gemfile.lock /book_manager/Gemfile.lock 12RUN bundle install 13COPY . /book_manager 14 15# Add a script to be executed every time the container starts. 16COPY entrypoint.sh /usr/bin/ 17RUN chmod +x /usr/bin/entrypoint.sh 18ENTRYPOINT ["entrypoint.sh"] 19EXPOSE 3000 20 21# Start the main process. 22CMD ["rails", "server", "-b", "0.0.0.0"] 23
docker-compose.yml
yml
1version: '3' 2services: 3 web: 4 build: . 5 command: bash -c "rm -f tmp/pids/server.pid && bundle exec rails s -p 3000 -b '0.0.0.0'" 6 volumes: 7 - .:/book_manager 8 ports: 9 - '3000:3000' 10 depends_on: 11 - db 12 db: 13 image: postgres 14 volumes: 15 - ./tmp/db:/var/lib/postgresql/data 16 environment: 17 - POSTGRES_PASSWORD=password 18 ports: 19 - '5432:5432'
試したこと
database.ymlを
yml
1test: 2 <<: *default 3 database: book_manager_test 4 host: localhost
のようにhost: localhost
を追加するとCI側では正しくテストが走るようになりましたが、
この状態で手元でRSpecを実行すると以下のエラーが出ます。
PG::ConnectionBad: could not connect to server: Connection refused Is the server running on host "localhost" (127.0.0.1) and accepting TCP/IP connections on port 5432? could not connect to server: Cannot assign requested address Is the server running on host "localhost" (::1) and accepting TCP/IP connections on port 5432?
補足情報(FW/ツールのバージョンなど)
Ruby 2.6.6
Rails 6.0.3

バッドをするには、ログインかつ
こちらの条件を満たす必要があります。