公式ドキュメントのインストール手順に沿ってやっていたところ、
./vendor/bin/sail up
を実行しても「Can't find a suitable configuration file in this directory or any parent. Are you in the right directory?」というエラーが出て、うまくいきませんでした。
その対処法を紹介します。
【前提】
・Docker Desctopインストール済み
・curl -s "https://laravel.build/example-app" | bashでプロジェクト作成済
・example-app(作ったディレクトリ)に移動済
結論:自前でsailをインストールしましょう
結論から話すと、以下のコマンドを実行して解決です。
php artisan sail:install
「Which services would you like to install?」と対話式で聞かれますので、お好みのdbを選べばOKです。
僕はmysqlを選びました。
その後以下コマンドを実行すればOKです。
./vendor/bin/sail up
http://localhost/にアクセスして、Laravelの画面が表示されていればOKです。