docker / awesome-compose

Awesome Docker Compose samples
https://docs.docker.com/compose/
Creative Commons Zero v1.0 Universal
35.06k stars 6.69k forks source link

/docker-entrypoint.sh: exec: line 38: /app/start.sh: not found #334

Open luigi-raynel-dev opened 1 year ago

mikesir87 commented 1 year ago

Hi @luigi-raynel-dev! Which example compose stack are you trying to run that gave you that error?

mvtab commented 1 year ago

Confirming problem. nginx-wsgi-flask will build without problems, but the nginx container won't run with the mentioned error. image

Running podman-compose with a rootful machine.


Update:

most likely a windows problem. Changed "/app/start.sh" to "/bin/bash /app/start.sh" in compose.yaml and I get now a windows-specific problem: image


Fix

Copied the raw start.sh and it is now working. Had to let the changes in compose.yaml there.