File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,11 @@ docker-compose exec app php artisan view:clear
3131
3232# Create storage link
3333echo " 🔗 Creating storage link..."
34- docker-compose exec app php artisan storage:link
34+ if docker-compose exec app test ! -L /var/www/public/storage; then
35+ docker-compose exec app php artisan storage:link
36+ else
37+ echo " ℹ️ Storage link already exists, skipping..."
38+ fi
3539
3640# Set permissions
3741echo " 🔐 Setting file permissions..."
@@ -41,3 +45,5 @@ docker-compose exec app chown -R www-data:www-data /var/www/bootstrap/cache
4145echo " ✅ Setup completed!"
4246echo " 🌐 Application is running at http://localhost"
4347echo " 📊 Frontend dev server is running at http://localhost:5173"
48+ echo " 🔧 phpMyAdmin is accessible at http://localhost:8080"
49+
You can’t perform that action at this time.
0 commit comments