Docker Compose: executable file not found in $PATH: unknown
My project directory structure: myapp/ src/ Dockerfile docker-compose.yml docker-deploy.sh wait-for-it.sh .env Where wait-for-it.sh is a copy of the famous wait-for-it script. My Dockerfile: FROM node:16 WORKDIR /usr/src/app COPY package*.json ./ COPY wait-for-it.sh ./ COPY docker-deploy.sh ./ RUN chmod +x docker-deploy.sh…