#!/bin/bash # Show Docker container status on production server # Usage: ./status.sh echo "🐳 Docker Container Status on Production Server" echo "" ssh -i ~/.ssh/production deploy@michaelschiemer.de "docker ps -a --format 'table {{.Names}}\t{{.Status}}\t{{.Ports}}'" echo "" echo "✅ Done!"