前提・実現したいこと
Dockerを勉強しています。
既存のRailsアプリをDockerにのせようとしていたのですが、
下記のエラーが出てしまい自分で調べても分からないため誰かご存じの方がいらっしゃれば教えて頂きたいです。
発生している問題・エラーメッセージ
$ docker-compose up
を打つと、以下のように表示されます。
teminal
1$ docker-compose up 2Creating network "rails_basic_default" with the default driver 3Creating rails_basic_db_1 ... done 4Creating rails_basic_web_1 ... done 5Attaching to rails_basic_db_1, rails_basic_web_1 6web_1 | /usr/bin/entrypoint.sh: line 8: execbash: command not found 7rails_basic_web_1 exited with code 127 8db_1 | 9db_1 | PostgreSQL Database directory appears to contain a database; Skipping initialization 10db_1 | 11db_1 | 2020-03-15 09:30:49.682 UTC [1] LOG: starting PostgreSQL 12.2 (Debian 12.2-2.pgdg100+1) on x86_64-pc-linux-gnu, compiled by gcc (Debian 8.3.0-6) 8.3.0, 64-bit 12db_1 | 2020-03-15 09:30:49.683 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 13db_1 | 2020-03-15 09:30:49.684 UTC [1] LOG: listening on IPv6 address "::", port 5432 14db_1 | 2020-03-15 09:30:49.692 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" 15db_1 | 2020-03-15 09:30:49.823 UTC [25] LOG: database system was shut down at 2020-03-15 09:25:30 UTC 16db_1 | 2020-03-15 09:30:49.871 UTC [1] LOG: database system is ready to accept connections
web_1 | /usr/bin/entrypoint.sh: line 8: execbash: command not found
8行目のexecbashコマンドなんてないよ。と表示がされており、
ターミナルの別タブで、
docker-compose run web rake db:create
を打つと
terminal
1$ docker-compose run web rake db:create 2Starting rails_basic_db_1 ... done 3/usr/bin/entrypoint.sh: line 8: execrake: command not found
先ほどと同じようにコマンドがないと表示されます。
該当のソースコード
Dockerfile
1FROM ruby:2.6.0 2RUN apt-get update -qq && apt-get install -y nodejs postgresql-client 3RUN mkdir /Rails_basic 4WORKDIR /Rails_basic 5COPY Gemfile /Rails_basic/Gemfile 6COPY Gemfile.lock /Rails_basic/Gemfile.lock 7RUN bundle install 8COPY . /Rails_basic 9 10# Add a script to be executed every time the container starts. 11COPY entrypoint.sh /usr/bin/ 12RUN chmod +x /usr/bin/entrypoint.sh 13ENTRYPOINT ["entrypoint.sh"] 14EXPOSE 3000 15 16# Start the main process. 17CMD ["rails", "server", "-b", "0.0.0.0"]
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: - .:/Rails_basic ports: - "3000:3000" depends_on: - db
entrypoint.sh
#!/bin/bash set -e # Remove a potentially pre-existing server.pid for Rails. rm -f /Rails_basic/tmp/pids/server.pid # Then exec the container's main process (what's set as CMD in the Dockerfile). exec "$@"
補足情報(FW/ツールのバージョンなど)
上記のDokcerファイル群のソースコードはほぼDockerの公式を参考に書きました。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/03/15 14:24 編集