6
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Laravel5.5で突然の「View [home] not found.」を解決する方法

Last updated at Posted at 2018-10-24

ある日...

今関わっているプロジェクトで下記のようにmakeファイルを利用してコマンド実行を楽にしているのですが、

clear:
	composer dump-autoload
	php artisan down
	php artisan clear-compiled
	php artisan cache:clear
	php artisan config:clear
	php artisan config:cache
	php artisan route:clear
	php artisan view:clear
	php artisan up

make clearをホストOS上で叩いた途端「View [home] not found.」でシステム全体が動かなくなってしまいました。。。

原因はphp artisan clear-compiled

上記コマンド一覧にあるclear-compliedコマンドによってbootstrap/cache/config.php内にViewファイルが保存されている場所を絶対パスで格納しているようでした。実際にプロジェクトのコードが稼働しているのはローカルで動いているDockerコンテナ上なので、ホストOSで取得された絶対パスのキャッシュをコンテナ上で見に行こうとしてエラーになってたわけなんですねー。

参考サイト

6
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?