#!/bin/bash # Quick script to show PHP logs from production server # Usage: ./logs.sh [lines] # Default: 50 lines LINES="${1:-50}" echo "📋 Showing last $LINES lines of PHP logs from production..." echo "" ssh -i ~/.ssh/production deploy@michaelschiemer.de "docker logs php --tail $LINES" echo "" echo "✅ Done!"