diff --git a/apps/website/app/dokploy-vs-coolify/page.tsx b/apps/website/app/dokploy-vs-coolify/page.tsx
new file mode 100644
index 0000000..2db97f2
--- /dev/null
+++ b/apps/website/app/dokploy-vs-coolify/page.tsx
@@ -0,0 +1,363 @@
+import { Container } from "@/components/Container";
+import { CallToAction } from "@/components/CallToAction";
+import { Testimonials } from "@/components/Testimonials";
+import { ComparisonStats } from "@/components/comparison-stats";
+import AnimatedGridPattern from "@/components/ui/animated-grid-pattern";
+import { Check, X, Zap, Cpu, Plug, LayoutDashboard, Bell } from "lucide-react";
+import Image from "next/image";
+import Link from "next/link";
+import type { Metadata } from "next";
+import { Button } from "@/components/ui/button";
+
+export const metadata: Metadata = {
+ title: "Dokploy Vs. Coolify Comparison",
+ description:
+ "Dokploy vs. Coolify at a glance: How to choose the right self-hosted open deployment option for your applications.",
+};
+
+const featureComparisonRows = [
+ { feature: "One-command installation", dokploy: true, coolify: true },
+ { feature: "Installation feedback and progress logs", dokploy: true, coolify: true },
+ { feature: "Works with firewall and TailScale out of the box", dokploy: true, coolify: false },
+ { feature: "Lightweight CPU usage while idle", dokploy: true, coolify: false },
+ { feature: "Low memory usage", dokploy: true, coolify: true },
+ { feature: "Teams and organizations support", dokploy: true, coolify: true },
+ { feature: "Projects grouping", dokploy: true, coolify: true },
+ { feature: "Consistent, responsive UI", dokploy: true, coolify: false },
+ { feature: "Built with Next.js / TypeScript", dokploy: true, coolify: false },
+ { feature: "AI-assisted deployments", dokploy: true, coolify: false },
+ { feature: "Deploy from custom Docker images", dokploy: true, coolify: true },
+ { feature: "Database deployment (Postgres, MySQL, Redis, etc.)", dokploy: true, coolify: true },
+ { feature: "Scheduled database backups (S3)", dokploy: true, coolify: true },
+ { feature: "Back up arbitrary Docker volumes, not just databases", dokploy: true, coolify: false },
+ { feature: "Preview deployments (review apps)", dokploy: true, coolify: true },
+ { feature: "API and CLI tools for automation", dokploy: true, coolify: true },
+ { feature: "Multi-server deployment", dokploy: true, coolify: true },
+ { feature: "Docker Swarm clustering", dokploy: true, coolify: "limited" },
+ { feature: "Cron jobs inside containers", dokploy: true, coolify: true },
+ { feature: "Cron jobs on your host machine", dokploy: true, coolify: false },
+ { feature: "Monitoring metrics (CPU, RAM, Disk)", dokploy: true, coolify: "limited" },
+ { feature: "Metrics enabled by default", dokploy: true, coolify: false },
+ { feature: "Automated alerts from metrics", dokploy: true, coolify: false },
+];
+
+const whyChooseItems = [
+ {
+ icon: Zap,
+ title: "Benefit from a fast, reliable setup",
+ description:
+ "Use a single command to deploy with Dokploy, which works seamlessly across firewalls, TailScale, and secure environments. Launch applications faster with Dokploy's optimized build system.",
+ },
+ {
+ icon: Cpu,
+ title: "Do more with less",
+ description:
+ "Keep your VPS fast and responsive with Dokploy's lightweight architecture, which uses minimal CPU and memory, even while idle. Automate builds, alerts, and scaling events effortlessly.",
+ },
+ {
+ icon: Plug,
+ title: "Integrate with your favorite platforms",
+ description:
+ "Connect Dokploy to GitHub, GitLab, and Bitbucket. Dokploy supports Docker, Compose, Nixpacks, and Buildpacks, and even lets you add APIs and use CLI automation.",
+ },
+ {
+ icon: LayoutDashboard,
+ title: "Experience an intuitive, polished UX",
+ description:
+ "Enjoy a clean, consistent UI in the cloud, powered by Next.js and TypeScript. Dokploy is the modern deployment dashboard, optimized for productivity and clarity, with smooth navigation and predictable save behavior.",
+ },
+ {
+ icon: Bell,
+ title: "Know what's happening before it's a problem",
+ description:
+ "Built-in metrics, automated alerting, and volume backups make Dokploy ideal for serious deployments. Monitor CPU, memory, and disk usage, automate notifications, and keep data safe with S3-compatible backups.",
+ },
+];
+
+const integrationRows = [
+ {
+ category: "Git providers",
+ dokploy: "GitHub, GitLab, Bitbucket, Gitea, Git Generic",
+ coolify: "GitHub, Git Generic",
+ },
+ {
+ category: "Build and deployment systems",
+ dokploy: "Docker, Docker Compose, Nixpacks, Heroku Buildpacks, Paketo Buildpacks, Railpack",
+ coolify: "Docker, Docker Compose, Nixpacks",
+ },
+ {
+ category: "Notifications and communication",
+ dokploy: "Slack, Telegram, Discord, Lark, Email (SMTP), Resend, Gotify, Ntfy, Pushover, Webhook",
+ coolify: "Slack, Discord, Telegram, Email (SMTP), Pushover, Resend, Teams",
+ },
+];
+
+export default function DokployVsCoolifyPage() {
+ return (
+
+ {/* Hero Section */}
+
+
+
+
+
+ Dokploy vs. Coolify
+
+
+ If you're looking for a self-hosted, open deployment solution that
+ lets you run applications on your own VPS or hardware, Dokploy and
+ Coolify are the two leading options. But which should you choose?
+
+
+
+
+
Dokploy
+
+ For a polished, intuitive, open deployment solution with
+ powerful automation, AI, monitoring and integration features –
+ designed for developers who want control without complexity –
+ choose Dokploy.
+
+
+
+
Coolify
+
+ For an open source deployment tool that's geared toward indie
+ devs and OSS hobbyists, with an accessible, less polished
+ approach that suits individuals over businesses, choose
+ Coolify.
+
+
+
+
+
+
+
+
+
+ {/* Dokploy vs Coolify at a glance */}
+
+
+
+
+ Dokploy vs. Coolify at a glance
+
+
+ Read our comprehensive Coolify vs. Dokploy features comparison
+ before you make your decision.
+
+
+
+
+ {/* Why you should choose Dokploy */}
+
+
+
+
+ Why you should choose Dokploy
+
+
+
+
+ {whyChooseItems.map((item, index) => (
+
+
+
+
+
+
+ {item.title}
+
+
{item.description}
+
+
+ {index === 0 ? (
+
+
+
+ ) : index === 1 ? (
+
+
+
+ ) : index === 2 ? (
+
+
+
+ ) : index === 3 ? (
+
+
+
+ ) : index === 4 ? (
+
+
+
+ ) : (
+
+ )}
+
+
+ ))}
+
+
+
+
+ {/* Dokploy integrates with the leading solutions */}
+
+
+
+
+ Dokploy integrates with the leading solutions
+
+
+
+
+
+
+
+
Category
+
Dokploy
+
Coolify
+
+
+
+ {integrationRows.map((row) => (
+
+
{row.category}
+
+ {row.dokploy}
+
+
+ {row.coolify}
+
+
+ ))}
+
+
+
+
+
+
+ {/* Why Dokploy is perfect for teams */}
+
+
+
+
+ Why Dokploy is perfect for teams of any size
+
+
+ Empower every team, from solo developers to enterprise engineering
+ squads, with a deployment platform built for collaboration and
+ control. Dokploy's organizational and project structuring features
+ make it simple for you to manage users, permissions, and
+ environments, while its automation and monitoring tools scale
+ seamlessly as your team grows. Whether you're running one app or
+ hundreds, Dokploy adapts to your needs without adding complexity.
+
+ );
+}
diff --git a/apps/website/app/features/application-deployment-platform/page.tsx b/apps/website/app/features/application-deployment-platform/page.tsx
new file mode 100644
index 0000000..a259c87
--- /dev/null
+++ b/apps/website/app/features/application-deployment-platform/page.tsx
@@ -0,0 +1,443 @@
+import { Container } from "@/components/Container";
+import { CallToAction } from "@/components/CallToAction";
+import AnimatedGridPattern from "@/components/ui/animated-grid-pattern";
+import {
+ Accordion,
+ AccordionContent,
+ AccordionItem,
+ AccordionTrigger,
+} from "@/components/ui/accordion";
+import { Button } from "@/components/ui/button";
+import {
+ Code2,
+ Layers,
+ Wrench,
+ GitBranch,
+ Webhook,
+ Eye,
+ FolderInput,
+ Server,
+ Cloud,
+ LayoutTemplate,
+ Workflow,
+ FileCode,
+ RotateCcw,
+ LayoutDashboard,
+ CloudCog,
+ Clock,
+} from "lucide-react";
+import Image from "next/image";
+import Link from "next/link";
+import type { Metadata } from "next";
+
+export const metadata: Metadata = {
+ title: "Application & Software Deployment Platform",
+ description:
+ "Dokploy's flexible, powerful application and software deployment platform enables you to put code written in Node.js, PHP, Python, Go, and Ruby live.",
+};
+
+const professionalFeatures = [
+ {
+ icon: Code2,
+ title: "Support for multiple languages",
+ description:
+ "Deploy apps written in Node, PHP, Python, Go, Ruby, and more. Dokploy does not restrict programming languages.",
+ },
+ {
+ icon: Layers,
+ title: "Deploy any app with any stack",
+ description:
+ "Dokploy supports single services and multi-service apps. Deploy from Git, a container registry, or Docker Compose.",
+ },
+ {
+ icon: Wrench,
+ title: "Your build, your way",
+ description:
+ "Choose Nixpacks, Buildpacks, or a Dockerfile. Switch strategies per project without reworking your pipeline.",
+ },
+];
+
+const automationFeatures = [
+ {
+ icon: Webhook,
+ title: "Use webhooks to auto-deploy",
+ description:
+ "Trigger deployments automatically by git push if you're a GitHub user.",
+ },
+ {
+ icon: Eye,
+ title: "Test changes before they go live",
+ description:
+ "Preview and test applications in isolated environments before production.",
+ },
+ {
+ icon: FolderInput,
+ title: "Set up automated watch paths",
+ description:
+ "Monitor directories or files for changes and trigger actions when they're modified.",
+ },
+];
+
+const deploymentOptions = [
+ {
+ icon: Server,
+ title: "On-Premise Deployment",
+ items: [
+ "Complete data sovereignty",
+ "Maximum security control",
+ "Compliance with strict regulations",
+ "No external dependencies",
+ ],
+ },
+ {
+ icon: Cloud,
+ title: "Cloud Deployment",
+ items: [
+ "Rapid scaling capabilities",
+ "Reduced infrastructure overhead",
+ "Global availability",
+ "Managed infrastructure",
+ ],
+ },
+];
+
+const platformFeatures = [
+ {
+ icon: Workflow,
+ title: "Automate deployments with CI/CD",
+ description:
+ "Build and publish your applications in any continuous integration, continuous delivery pipeline.",
+ },
+ {
+ icon: FileCode,
+ title: "Configuration-first setup",
+ description:
+ "Use configuration files to maintain consistency in setup, configuration, and build across teams.",
+ },
+ {
+ icon: RotateCcw,
+ title: "Rollback capabilities built in",
+ description:
+ "Rollback capabilities help teams recover quickly when new features impact production.",
+ },
+ {
+ icon: LayoutDashboard,
+ title: "Single dashboard with analytics",
+ description:
+ "Manage deployment tools, environments, infrastructure, and analytics from a single dashboard as you scale.",
+ },
+ {
+ icon: CloudCog,
+ title: "Simplify infrastructure management",
+ description:
+ "Utilize infrastructure as code across cloud providers and AWS services.",
+ },
+ {
+ icon: Clock,
+ title: "Automation beyond deployments",
+ description:
+ "Run cron jobs to automate recurring tasks for apps, services, and data workflows.",
+ },
+];
+
+const faqs = [
+ {
+ question: "Can I deploy Docker Compose apps with Dokploy?",
+ answer:
+ "Yes. Dokploy supports deploying applications with Docker Compose, which is ideal when your implementation spans multiple services, data stores, and supporting tools. You can deploy a Compose stack as part of your deployment workflows, keep configuration in configuration files, and manage environments without increasing complexity as you scale.",
+ },
+ {
+ question: "Which Git providers can I deploy from?",
+ answer:
+ "Dokploy integrates seamlessly with popular version control systems and workflows, including GitHub and other git providers such as GitLab, Gitea, Bitbucket, and other Atlassian tools. You can connect repos from these version control systems, automate deployments on code changes, and align deployment workflows with CI/CD practices. If your team already uses GitHub Actions or Atlassian tools, Dokploy fits into that process without forcing a new way of working.",
+ },
+ {
+ question: "Can I deploy from a Docker registry?",
+ answer:
+ "Yes. You can deploy a Docker image directly from a registry, which is useful when you already build artifacts elsewhere or want tighter control over technologies and build tooling. This approach supports consistent deployments across environments and production, especially when combined with automation and rollback capabilities for safer releases.",
+ },
+ {
+ question: "How do preview deployments work in Dokploy?",
+ answer:
+ "Preview deployments create environments for testing code changes before they reach production environments. When a pull request or branch updates, Dokploy can trigger automated deployments and deployment workflows so developers can validate functionality, reliability, and security in an isolated environment. This setup supports multiple environments, speeds up testing for new features, and helps teams reduce errors before customers and users see changes in production.",
+ },
+ {
+ question: "What is a deployment platform?",
+ answer:
+ "A deployment platform helps developers and teams deploy apps and services through a repeatable deployment process. It brings software deployment tools and deployment workflows into one place so you can manage setup, configuration, build, deployment, and infrastructure management from a single dashboard. The goal is speed and reliability: automate routine steps, reduce errors from manual work, and keep production environments secure as applications evolve and ship new features.",
+ },
+ {
+ question:
+ "What's the difference between a deployment platform and a software deployment platform?",
+ answer:
+ "In practice, they overlap. A deployment platform often focuses on the mechanics of deployment tools and infrastructure, while a software deployment platform emphasizes end-to-end software delivery, including CI/CD, continuous integration, and continuous delivery. A software deployment platform typically ties deployment workflows to version control systems, configuration files, and multiple environments, so teams can maintain consistency from development to production, with rollback capabilities when code changes introduce issues.",
+ },
+];
+
+export default function ApplicationDeploymentPlatformPage() {
+ return (
+
+ {/* Hero Section */}
+
+
+
+
+
+ The Ultimate Application Deployment Platform
+
+
+ Deploy any type of application with our straightforward solution.
+ Benefit from multiple build types, Docker Compose support, and our
+ native Git integration.
+
+
+
+
+
+
+
+
+
+ {/* Professional features for every developer */}
+
+
+
+
+ Professional features for every developer
+
+
+ Take advantage of flexible features that empower everyone, no
+ matter your build strategy or the size of your team.
+
+
+
+ {professionalFeatures.map((feature) => (
+
+
+
+
+
{feature.title}
+
+ {feature.description}
+
+
+ ))}
+
+
+
+
+ {/* Ship from GitHub, Bitbucket, and more */}
+
+
+
+
+
+
+
+
+
+ Ship from GitHub, Bitbucket, and more
+
+
+ Connect your repo and deploy on push with webhooks. We support
+ GitHub, GitLab, Gitea, Bitbucket, Docker registry, and Git generic
+ provider. Control exactly what changes trigger a release, including
+ monorepos.
+
+
+
+
+
+ {/* Automate deployments and test changes */}
+
+
+
+
+ Automate deployments and test changes
+
+
+ Keep application deployments hands-off, while still staying in
+ control of what ships and when.
+
+
+
+ {automationFeatures.map((feature) => (
+
+
+
+
+
{feature.title}
+
+ {feature.description}
+
+
+ ))}
+
+
+
+
+ {/* Host Dokploy where your business needs it */}
+
+
+
+
+ Host Dokploy where your business needs it
+
+
+ Choose a deployment option that suits your business–on your
+ infrastructure or ours.
+
+
+
+ {deploymentOptions.map((option) => (
+
+
+
+
+
+ {option.title}
+
+
+ {option.items.map((item) => (
+
+
+ {item}
+
+ ))}
+
+
+ ))}
+
+
+
+
+ {/* Hundreds of templates */}
+
+
+
+
+
+
+
+
+
+ Hundreds of templates to get started
+
+
+ Deploy popular open-source apps in one click with Dokploy Templates,
+ a ready-to-run library of pre-configured apps you can deploy fast,
+ without rebuilding the same stack from scratch.
+
+
+
+
+
+ {/* Dashboard screenshot */}
+
+
+
+
+
+
+
+
+ {/* Everything you need in a deployment platform */}
+
+
+
+
+ Everything you need in a deployment platform
+
+
+ Dokploy is the software deployment platform for shipping anything
+ from a single service to a full multi-container stack.
+