This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Diagnose why firecrawl-api container is missing from the Coolify stack. | |
| # Run on VPS as root. Output goes to /tmp/firecrawl-diag.log AND stdout. | |
| exec > >(tee /tmp/firecrawl-diag.log) 2>&1 | |
| STACK_UUID="lo88g8goo4k0g8kow4g8w080" | |
| COMPOSE="/data/coolify/services/${STACK_UUID}/docker-compose.yml" | |
| echo "====================================================" |