dockerがimageからコンテナが立ち上がらず、大変困っております。
パスの問題が何か発生しているのでしょうか?
内容が全く分からず非常に困っております。
何かヒントだけでも頂けると大変助かります。
解決できずに数日を費やしてしまっており、非常に苦しい状況です。
どなたかご教示頂けますと幸いです。どうぞよろしくお願い申し上げます。
###現在出ている状況
#####docker images
imagesは存在しています。
C:\Users\watashi\Documents\GitHub\app1>docker images REPOSITORY TAG IMAGE ID CREATED SIZE app1_web latest ff091####### 38 minutes ago 1.65GB redis latest 5d897####### 5 days ago 105MB alpine/git latest 37ca3####### 7 days ago 25.2MB
#####docker container
docker run -it app1_web
を実行してもno such file or directoryと表示されてしまいます。
C:\Users\watashi\Documents\GitHub\app1>docker run -it app1_web standard_init_linux.go:228: exec user process caused: no such file or directory
###追加情報(10/4 16:43)
docker build -f /path/to/a/Dockerfile
を実行したところ、Dockerfile自体が見つからない状態であるようです。
こちらはPATHの問題が何か発生しているのでしょうか・・・?
C:\Users\watashi\Documents\GitHub\app1>docker build -f /path/to/a/Dockerfile . [+] Building 0.0s (1/2) => ERROR [internal] load build definition from Dockerfile 0.0s => => transferring dockerfile: 74B 0.0s ------ > [internal] load build definition from Dockerfile: ------ failed to solve with frontend dockerfile.v0: failed to read dockerfile: error from sender: resolve : CreateFile \path: The system cannot find the file specified.
###現在できていること
別のデスクトップPCではdockerは問題なく動いており、外出時に行える様のノートPCでは動かないという状況です。
(どちらもwindows10 home)
###既に試したこと
dockerの最新版(4.0.1)インストールや、ubuntsのアップデートなど、周辺環境は全てアップデートしました。
###Dockerfile
FROM node:14.16-alpine as node FROM ruby:2.7.1-alpine COPY --from=node /usr/local/bin/node /usr/local/bin/node RUN apk update \ && apk add --no-cache build-base make g++ sqlite-dev postgresql postgresql-dev imagemagick6 imagemagick6-dev imagemagick6-c++ \ && gem install nokogiri \ && mkdir /app WORKDIR /app COPY ./Gemfile /app/Gemfile COPY ./Gemfile.lock /app/Gemfile.lock RUN bundle install COPY ./ /app COPY ./docker/web/entrypoint.sh /usr/bin/ RUN chmod +x /usr/bin/entrypoint.sh ENTRYPOINT ["entrypoint.sh"] EXPOSE 8000 CMD ["rails", "server", "-b", "0.0.0.0"]
どうぞよろしくお願い申し上げます。
回答1件
あなたの回答
tips
プレビュー