Skip to Content
RunbooksCoolify Troubleshooting

Coolify Troubleshooting

Debugging the hosting for WordPress and auxiliary apps.

Infrastructure

RoleIP AddressHostname
Coolify Server188.245.90.124coolify

Steps

If UI (coolify.incobroking.com) is unreachable:

1. SSH Access

ssh root@188.245.90.124

2. Check Containers

Coolify runs on Docker.

docker ps

Expect: coolify, coolify-db, coolify-redis.

3. Logs

If restarting/unhealthy:

docker logs coolify -f --tail 100

4. Restart

Standard:

docker restart coolify

Full Stack:

# Verify path (e.g., /data/coolify/source) docker compose down docker compose up -d

5. Disk Space

Check for full disk (build artifacts/logs).

df -h

Prune if necessary (Caution: deletes stopped containers/unused images):

docker system prune -a --volumes

Updating

Run the install script to update:

curl -fsSL https://cdn.coollabs.io/coolify/install.sh | bash
Last updated on