Coolify Troubleshooting
Debugging the hosting for WordPress and auxiliary apps.
Infrastructure
| Role | IP Address | Hostname |
|---|---|---|
| Coolify Server | 188.245.90.124 | coolify |
Steps
If UI (coolify.incobroking.com) is unreachable:
1. SSH Access
ssh root@188.245.90.1242. Check Containers
Coolify runs on Docker.
docker psExpect: coolify, coolify-db, coolify-redis.
3. Logs
If restarting/unhealthy:
docker logs coolify -f --tail 1004. Restart
Standard:
docker restart coolifyFull Stack:
# Verify path (e.g., /data/coolify/source)
docker compose down
docker compose up -d5. Disk Space
Check for full disk (build artifacts/logs).
df -hPrune if necessary (Caution: deletes stopped containers/unused images):
docker system prune -a --volumesUpdating
Run the install script to update:
curl -fsSL https://cdn.coollabs.io/coolify/install.sh | bashLast updated on