- Add initializer count logging in DiscoveryServiceBootstrapper - Add route structure analysis in RouterSetup - Add request parameter logging in HttpRouter - Update PHP production config for better OPcache handling - Fix various config and error handling improvements
12 lines
297 B
Bash
Executable File
12 lines
297 B
Bash
Executable File
#!/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!"
|