Created
July 25, 2024 07:56
-
-
Save yakserr/aa86316ef9c64d54397f20401416e779 to your computer and use it in GitHub Desktop.
laravel sail got error in permission in folder using Ubuntu PopOs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# start sail | |
sail up | |
# open in other terminal and start sail shell (from docker container) | |
sail shell | |
# change storage permissions | |
chmod -R 777 /var/www/html/storage | |
chown -R www-data:www-data /var/www/html/storage | |
# restart sail app | |
exit | |
sail down | |
sail up |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment