웹/Laravel
Windows에서 Laravel 도커 실행시 오류 문제 해결
이재빵
2023. 3. 8. 12:14
728x90
$ ./vendor/bin/sail up
Unsupported operating system [MINGW64_NT-10.0-18363]. Laravel Sail supports macOS, Linux, and Windows (WSL2).
vendor/laravel/sail/bin/sail 에서 아래 부분 주석 처리.
# Verify operating system is supported...
case "${UNAMEOUT}" in
Linux*) MACHINE=linux;;
Darwin*) MACHINE=mac;;
*) MACHINE="UNKNOWN"
esac
if [ "$MACHINE" == "UNKNOWN" ]; then
echo "Unsupported operating system [$(uname -s)]. Laravel Sail supports macOS, Linux, and Windows (WSL2)." >&2
exit 1
fi