railsアプリをローカルで作ってGCEにContainer-Optimized OSのインスタンスを作りました。
user1のgcp_railsディレクトリにgitにpushしたファイルをpullしてdocker-compose up web
のコマンドを実行するとエラーとなりコンテナが起動しません。
散々調べましたが何が原因化わかりませんでした????
????ちょっとして手がかりでも良いので教えて下さい。
エラー内容です
user1@gcp-rails ~/gcp_rails $ docker-compose up web gcprails_db_1 is up-to-date Starting gcprails_web_1 ... Starting gcprails_web_1 ... error ERROR: for gcprails_web_1 Cannot start service web: error while creating mount source path '/rootfs/home/user1/gcp_rails': mkdir /rootfs: read-only file system ERROR: for web Cannot start service web: error while creating mount source path '/rootfs/home/user1/gcp_rails': mkdir /rootfs: read-only file system Encountered errors while bringing up the project.
mkdirが失敗しているような感じです。
ちなみにGCEにはdocker-composeが入っていないのでインストールを別途しました。
gcp_railsディレクトリの内容です
drwxrwxrwx 17 user1 user1 4096 Oct 15 05:03 . drwxr-xr-x 4 user1 user1 4096 Oct 15 04:16 .. drwxr-xr-x 7 user1 user1 4096 Oct 15 05:17 .git -rw-r--r-- 1 user1 user1 620 Oct 15 02:58 .gitignore -rw-r--r-- 1 user1 user1 10 Oct 15 02:58 .ruby-version -rwxr-xr-x 1 user1 user1 205 Oct 15 02:58 Dockerfile -rwxr-xr-x 1 user1 user1 2217 Oct 15 02:58 Gemfile -rwxr-xr-x 1 user1 user1 0 Oct 15 02:58 Gemfile.lock -rw-r--r-- 1 user1 user1 374 Oct 15 02:58 README.md -rw-r--r-- 1 user1 user1 227 Oct 15 02:58 Rakefile drwxr-xr-x 10 user1 user1 4096 Oct 15 02:58 app drwxr-xr-x 2 user1 user1 4096 Oct 15 02:58 bin drwxr-xr-x 5 user1 user1 4096 Oct 15 02:58 config -rw-r--r-- 1 user1 user1 130 Oct 15 02:58 config.ru drwxr-xr-x 2 user1 user1 4096 Oct 15 02:58 db -rwxr-xr-x 1 user1 user1 394 Oct 15 03:17 docker-compose.yml drwxr-xr-x 2 user1 user1 4096 Oct 15 05:03 file drwxr-xr-x 4 user1 user1 4096 Oct 15 02:58 lib drwxr-xr-x 2 user1 user1 4096 Oct 15 02:58 log -rw-r--r-- 1 user1 user1 61 Oct 15 02:58 package.json drwxr-xr-x 2 user1 user1 4096 Oct 15 02:58 public drwxr-xr-x 2 user1 user1 4096 Oct 15 05:03 read-only drwxr-xr-x 2 user1 user1 4096 Oct 15 02:58 storage drwxr-xr-x 2 user1 user1 4096 Oct 15 05:03 system drwxr-xr-x 9 user1 user1 4096 Oct 15 02:58 test drwxr-xr-x 2 user1 user1 4096 Oct 15 02:58 tmp drwxr-xr-x 2 user1 user1 4096 Oct 15 02:58 vendor
Dockerfileです
FROM ruby:2.6.1 RUN apt-get update -qq && apt-get install -y build-essential nodejs RUN mkdir /app WORKDIR /app COPY Gemfile /app/Gemfile COPY Gemfile.lock /app/Gemfile.lock RUN bundle install COPY . /app
docker-compose.ymlです
version: '3' services: web: build: . command: bundle exec rails s -p 3000 -b '0.0.0.0' volumes: - .:/app ports: - 4010:3000 depends_on: - db tty: true stdin_open: true db: image: mysql:5.7 volumes: - db-volume:/var/lib/mysql ports: - 5320:3306 environment: MYSQL_ROOT_PASSWORD: password volumes: db-volume:
調べても情報が無くほとほと困っております、どうかよろしくおねがいします。
回答1件
あなたの回答
tips
プレビュー