mrkeyoor.com_
Tue 01 Sept 17:40 UTC
Self-Hostedevaluationupdated 26 Aug 2026

coolify review

Coolify is a self-hosted control panel for deploying applications, databases, and packaged services to Linux servers you control. It gives small teams a Heroku-like workflow while leaving the containers and configuration on their own machines.

+171stars / 7d
Verdict

Our Coolify checkout installed 55 packages in 76 seconds and built in 8 seconds, but its available package targets gave us no test suite to run. Use it when your team wants a friendly deployment panel and accepts responsibility for root access, Docker networking, backups, and upgrades. Choose a managed platform if nobody owns those jobs after the first successful deploy.

We ran it

Lab card: what happened when we ran coolifyScreenshot of coolify (coolify.io)
Install✓ · 76s55 packages · 115 MB
Build✓ · 8s
Testsn/ano test script
Known vulns00 critical · 0 high · 0 moderate · 0 low (npm audit)
Repo3948 files~361,817 lines of source · 49.4 MB · 18 CI workflows · tests dir

Answers from our run

Does coolify build from source?

Dependencies installed in 76 seconds (55 packages), and the build succeeded in 8 seconds. We cloned commit 29c7b04 into a clean Debian container with 3 CPUs and no project-specific setup.

Does coolify have tests you can run?

Not through a standard command: the project exposes no test script or target that our harness could run.

Does coolify have known vulnerabilities in its dependencies?

npm audit found none in the dependency tree at the time of our run.

Who should not use coolify?

Shared-hosting customers or developers without root access: the installer refuses to run without root or sudo and writes under /data/coolify.

What are the alternatives to coolify?

Dokploy, CapRover, Dokku. Our Coolify checkout installed 55 packages in 76 seconds and built in 8 seconds, but its available package targets gave us no test suite to run.

Setup4/576-second install; production still needs root, SSH, Docker, and DNS
Docs4/5Detailed operations docs sit beyond a very short repository README
Community5/561,080 stars and active issue and pull request work on August 26
Maturity4/5Frequent releases and broad features, with a large open work queue

Discussed on

  1. hnShow HN: An open-source, self-hostable Heroku and Netlify alternative345 points
  2. hnCoolify: Open-Source, Self-Hostable Alternative to Heroku/Netlify/Vercel35 points
  3. hnCoolify: Open-source, self-hostable Heroku/Netlify/Vercel alternative6 points
  4. hnCoolify 4.3.04 points
  5. hn$1000 bounty to add a feature to coolify3 points

Who it’s for

Small teams that want push-to-deploy hosting on their own VPS or bare-metal servers.
Developers willing to own Docker, DNS, backups, upgrades, and server access in exchange for less platform lock-in.
Agencies running several client applications that need one deployment panel and separate target servers.
Operators who want a supported paid cloud control plane without giving up self-hosted workloads.

Who it’s NOT for

Shared-hosting customers or developers without root access: the installer refuses to run without root or sudo and writes under /data/coolify.
Teams whose policy forbids SSH key access to root: the server documentation asks for Coolify's public key in root's authorized_keys.
Anyone expecting the self-hosted edition to remove infrastructure work: the README sells the cloud edition partly on less maintenance, better support, and high availability.
Operators who cannot accommodate Docker networking changes: the installer manages address pools and may restart the Docker daemon when that configuration changes.

Setup reality

Our sandbox install succeeded in 76 seconds, adding 55 packages and using 115 MB. The build succeeded in 8 seconds. The checkout had 3,948 files, about 361,817 source lines, and measured 49.4 MB before installation; npm audit reported 0 known vulnerabilities.

The production quick start is a root-run shell installer, not the Bun build we checked. A useful deployment needs a Linux host, SSH keys, Docker, DNS, reachable ports, storage, and credentials for source providers or registries. Coolify recommends one server for its control plane and separate servers for workloads.

The repository has 18 CI workflow files and a tests directory, but no test script or target was available to our harness, so tests were skipped. The checkout has a Compose file and no Dockerfile; the installer pulls and arranges the published runtime pieces itself.

Coolify trades platform rent for server responsibility

Coolify gives a developer-owned server the deployment conveniences people associate with Heroku, Netlify, and Vercel. You connect Linux machines over SSH, attach a Git source, and let the panel manage applications, databases, and packaged services. If you stop using the panel, the README says the deployed resources and their configuration remain on your server. You lose Coolify's automation, but the workloads are not trapped inside a proprietary hosting account.

That bargain is attractive only if somebody owns the machines. Our checkout contained 3,948 files and about 361,817 source lines, so this is a substantial control plane rather than a thin Docker wrapper. Coolify can manage a local host, remote VPS, bare-metal machine, or Raspberry Pi. Its own guidance recommends placing the panel on one server and applications on one or more others, which separates deployment management from workload failures but adds another host to patch and monitor.

Root SSH access is a design requirement

The repository's quick start is a single command that pipes the published installation script to a root shell. Reading the script matters: it refuses a non-root user, creates Coolify's directory tree under /data/coolify, checks or installs OpenSSH, handles Docker, and inspects Docker address pools. That is reasonable for a machine dedicated to the platform. It is a poor fit for shared hosting, locked-down corporate servers, or a box whose Docker daemon another team owns.

Remote management also depends on SSH key authentication. Coolify's server documentation tells operators to place its public key in the root user's authorized_keys, and it requires Docker Engine 24 or newer on managed servers. Those permissions let the panel deploy and supervise containers, but they also make the panel a sensitive administrative system. The 49.4 MB source checkout is the small part of the security decision; the larger part is protecting the web login, SSH keys, source tokens, registry credentials, and backup destinations.

What happened when we ran it

Our fresh unprivileged sandbox installed the checked-out commit in 76 seconds. The Bun-based step added 55 packages and occupied 115 MB on disk, then the available build completed in 8 seconds. Npm audit reported 0 known vulnerabilities across the installed dependency set. These results cover commit 29c7b04 on 3 CPUs with 8 GB of RAM, and they show that the repository's package layer can be prepared without a long debugging session.

Tests are the gap in that otherwise clean run. Our harness found no test script or target, so it skipped the test step; reporting a passing suite would be wrong. The repository did contain a tests directory and 18 CI workflow files, which suggests validation exists elsewhere, but the command surface presented to our sandbox did not expose it. We also found a Compose file and no Dockerfile. Production installation uses Coolify's installer and published images, so the 8-second source build is not a rehearsal of a full server deployment.

The panel simplifies deploys, not operations

Once installed, Coolify centralizes the repetitive work: connecting source repositories, applying environment settings, routing domains, and managing deployed services. The README also advertises a paid cloud edition for teams that do not want to host the Coolify control server themselves. Its stated benefits include high availability, email notifications, better support, and less maintenance. That comparison is unusually candid about what the free self-hosted route leaves with you.

Backups, restore drills, storage growth, DNS, TLS reachability, host upgrades, and incident response remain operator work. A successful 76-second dependency install says nothing about whether a database restore works after a disk failure. Before moving production apps, test one disposable service, rotate its Git credential, restore its data to another server, and document how to regain access if the Coolify host is unavailable. The panel can make these tasks easier to initiate, but it cannot assign an owner to them.

Fast releases come with a large public work queue

GitHub showed 61,080 stars and 647 combined open issues and pull requests when fetched on August 26, 2026. The last push was that day, as was release v4.3.12. Its fixes covered proxy-aware authentication rate limits, stale server-unreachable counters, an editor alignment problem, and retries for cloud registration email. That is strong evidence of current maintenance. The combined open count is not a count of confirmed bugs, though it does tell adopters to search the tracker before relying on a particular deployment path.

Recent open reports show why. Issue 11510 describes a deployment failure involving an IPv6 gateway value, while issue 11511 reports helper containers that may not be cleaned up under a registry-prefixed image reference. Issue 9271 concerns preview deployments not triggering when a pull request opens. These are specific operating paths, not proof that every installation suffers. They are still worth adding to an acceptance checklist if your network, registry naming, or preview workflow matches the report.

Coolify fits teams with a named infrastructure owner

The strongest case is a small technical team paying for several VPS instances and wanting one approachable deployment surface. Apache 2.0 licensing, active releases, and the ability to keep workloads on your own servers make an evaluation easy to justify. The web panel also lowers the barrier for colleagues who do not want every deployment to begin with an SSH session. None of that turns a self-hosted platform into managed hosting.

Our run ended with a successful 8-second build and 0 audit findings, but no runnable test target. Pair that source result with a real server trial before trusting Coolify with customer data. If one person can own root access, Docker, upgrades, monitoring, and restores, the panel can remove plenty of deployment friction. If those duties would be shared vaguely across the team, Coolify Cloud or another managed PaaS is the safer purchase.

Alternatives

ProjectWhat it isPick it when
Dokploy gh↗A self-hosted application deployment panel built around Docker and Traefik.pick this instead when you want to compare a newer TypeScript-first panel with a similar VPS workflow.
CapRoverA Docker-based platform with one-click apps and a long-established deployment model.pick this instead when a smaller, older control plane and its existing app catalog suit your stack.
DokkuA command-line PaaS that turns one server into a Git-push deployment target.pick this instead when you prefer shell-driven operations over a web control panel.

What people are saying

  1. [velocity-scout] coollabsio/coolify

Sources

  1. Coolify repository and README
  2. Coolify v4.3.12 release
  3. Coolify server requirements
  4. Coolify installation script
  5. Coolify open issues and pull requests

More self-hosted reviews

v2 · OpenShell · wigolo · Mindwtr · club-3090 · reclip · the whole board →