Title here
Summary here
# Check if Docker is running
docker info
# Start Docker (macOS with Colima)
colima start
# Restart Docker services
otto-stack down && otto-stack up# Find what's using a port
lsof -i :5432
# Kill process using port
kill -9 $(lsof -t -i:5432)# Check service logs
otto-stack logs postgres
# Restart specific service
otto-stack restart postgres
# Full reset
otto-stack down && otto-stack up# Validate configuration
otto-stack doctor
# Debug mode
otto-stack --verbose uplsof -i :PORT to identify the processotto-stack logs SERVICE_NAMEdocker stats for resource usageotto-stack logs SERVICE_NAMEotto-stack doctorIf all else fails:
# Stop all services
otto-stack down
# Clean up containers and volumes
docker system prune -a --volumes
# Restart fresh
otto-stack up