Error during docker-compose up
See original GitHub issueGetting the below error when i run docker-compose up node-server envoy commonjs-client
C:\Users\Shankar.Mohan\Desktop\gRPC\grpc-web>docker-compose up node-server envoy commonjs-client
Building prereqs
Step 1/19 : FROM grpcweb/common
---> 2d584aa3829e
Step 2/19 : ARG MAKEFLAGS=-j8
---> Using cache
---> c9d6e377c722
Step 3/19 : ARG BUILDIFIER_VERSION=1.0.0
---> Using cache
---> bffb69906e37
Step 4/19 : ARG BAZEL_VERSION=3.7.0
---> Using cache
---> a47fc2b41500
Step 5/19 : RUN echo "\nloglevel=error\n" >> $HOME/.npmrc
---> Using cache
---> b9e3d3a21920
Step 6/19 : WORKDIR /github/grpc-web
---> Using cache
---> 37b86d9e4903
Step 7/19 : COPY ./Makefile ./Makefile
---> Using cache
---> 27dbb2eb7146
Step 8/19 : COPY ./WORKSPACE ./WORKSPACE
---> Using cache
---> 9c8fd7330112
Step 9/19 : COPY ./bazel ./bazel
---> Using cache
---> 74b6cc480883
Step 10/19 : COPY ./javascript ./javascript
---> Using cache
---> 00975efa57aa
Step 11/19 : COPY ./net ./net
---> Using cache
---> fec6a91a479c
Step 12/19 : COPY ./packages ./packages
---> Using cache
---> 6f70f8d6ba03
Step 13/19 : COPY ./scripts ./scripts
---> Using cache
---> bdd167561345
Step 14/19 : COPY ./test ./test
---> Using cache
---> d047d517801b
Step 15/19 : RUN ./scripts/init_submodules.sh
---> Running in 8de583750cd3
/bin/sh: 1: ./scripts/init_submodules.sh: not found
ERROR: Service 'prereqs' failed to build: The command '/bin/sh -c ./scripts/init_submodules.sh' returned a non-zero code: 127
Issue Analytics
- State:
- Created 3 years ago
- Comments:7
Top Results From Across the Web
docker-compose up giving error - Stack Overflow
Past the run.sh script. Building and running are to different step. If you provide a command that is not available in your container,...
Read more >How to get detailed error message using docker-compose up ...
means that Docker tried to run the dotnet executable inside the container, but it couldn't start because the dotnet binary in the image...
Read more >Docker compose up gives error - General Discussions
hi, i am pretty new in docker and docker compose. I write a web app, python flask. and I wanna dockerize it. but...
Read more >`docker compose up` doesn't start containers (error message
docker compose up doesn't start containers with the following error message after updating Docker for Mac to 4.3.0 (71786) .
Read more >Docker-compose up throwing error | Edureka Community
ERROR: Version in "./docker-compose. yaml" is unsupported. You might be seeing this error because you're using the wrong Compose file version.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Thanks its helpful and it works after added the below line in \gRPC\grpc-web\net\grpc\gateway\docker\prereqs\Dockerfile
before line
But now i am getting another error during docker-compose up
Then i tried run
docker-compose up -d node-server envoy commonjs-client
and getting the same error again.