Why did my n8n workflows disappear after restarting Docker?+
Almost certainly no persistent volume was mounted for n8n's data directory. Without one, the container's filesystem is discarded when it is recreated, taking workflows, credentials, and execution history with it. Mount a named volume and restore from a backup if you have one.
Do I need Postgres, or is SQLite enough?+
SQLite is the default and fine for evaluation or light personal use. For production, use Postgres: execution history grows quickly and concurrent access is more predictable on a real database server.
Why are my n8n webhooks not working?+
The usual causes are no valid HTTPS certificate on the public endpoint, or n8n not being told its own external URL, which makes it generate webhook links pointing at the container's internal address. Both must be correct before an external service can reach the workflow.
What is the n8n encryption key and why does it matter?+
n8n encrypts saved credentials with it. If it is lost or changes between deployments, the stored credentials cannot be decrypted and every one must be re-entered. Back it up separately from the database, because a database backup alone is not enough to recover.
How much memory does n8n need?+
Around 1 GB of memory and half a vCPU is a workable starting point for light use. Memory-heavy nodes, large payloads, and overlapping executions raise it quickly, so size for peak rather than average.
How do I upgrade n8n safely?+
Pin a specific version rather than tracking latest, read the release notes for breaking changes, back up the database and encryption key, then upgrade and verify. Testing on a copy first is worth the extra step for anything business-critical.
Is managed hosting easier than Docker?+
It removes this checklist entirely. On Darwa there is no Dockerfile, compose file, volume, or environment variable to configure: you choose an AI Agent plan, give the agent a name, pick the subdomain it answers on, and launch. Persistent storage, the generated encryption key, managed HTTPS, health verification, and backups come with the plan. Self-hosting on your own server remains cheaper on raw compute if you want to own the work above.
Do I need to know Docker to run n8n on Darwa?+
No. The install is one click from the agent catalog — pick a plan, name it, choose a subdomain, launch. Darwa runs the container for you and never asks for a compose file. Container details are shown read-only afterwards for diagnostics, so you can see what is running without having to manage it.