LiveOverflow / PwnAdventure3

PwnAdventure3 Server
GNU General Public License v3.0
632 stars 136 forks source link

stat /opt/pwn3/setup/masterserver.sh: no such file or directory: unknown #35

Open VolkerSchlegel opened 2 years ago

VolkerSchlegel commented 2 years ago

Output from docker-compose up: ``` [+] Running 4/4

DarthVishnu8 commented 3 months ago

I got a similar error but on adding some dos2unix conversion commands to the Dockerfile I was able to solve it. Basically windows is doing some file ending formatting issues which can be fixed by adding the line RUN apt-get update && apt-get install -y \ vim \ postgresql \ dos2unix \ && rm -rf /var/lib/apt/lists/* and RUN find . -type f -name '*.sh' -exec dos2unix {} \; in the end