0

I have two docker containers. I tried to change owners of storage and bootstrap/cache, but its not working.

Yurii
  • 1

1 Answers1

0

Make sure that you're running the below commands INSIDE your Docker container and not from outside of the Docker container:

php artisan cache:clear
php artisan config:clear

This should fix your problem. Running these commands outside of the Docker container (on your machine) will cause this problem to happen.

ChrisG
  • 675
  • 6
  • 13