diff --git a/apps/website/app/deploy-ai/page.tsx b/apps/website/app/deploy-ai/page.tsx new file mode 100644 index 0000000..58a620f --- /dev/null +++ b/apps/website/app/deploy-ai/page.tsx @@ -0,0 +1,323 @@ +import { Container } from "@/components/Container"; +import AnimatedGridPattern from "@/components/ui/animated-grid-pattern"; +import { Button } from "@/components/ui/button"; +import { + Bot, + Boxes, + Activity, + Users, + MousePointerClick, + Network, + KeyRound, + ShieldCheck, + FlaskConical, + Rocket, + Sparkles, +} from "lucide-react"; +import Link from "next/link"; +import type { Metadata } from "next"; + +export const metadata: Metadata = { + title: "Deploy AI Apps Securely with Dokploy", + description: + "Empower your team to deploy AI-built apps in a secure, isolated sandbox, with SSO, multitenancy, audit logs, and one-click deploys.", + alternates: { + canonical: "https://dokploy.com/deploy-ai", + }, +}; + +const coreFeatures = [ + { + icon: Bot, + title: "Connect AI agents directly to Dokploy", + description: + "Dokploy's MCP server enables AI agents to interact with your deployment environment through the Model Context Protocol. An AI tool can trigger deployments, query application state, and manage services—without needing a custom integration.", + }, + { + icon: Boxes, + title: "Deploy any app, from any source", + description: + "Whether it's a Git repo, a Docker image, or a Docker Compose file, Dokploy handles it. Non-technical users can go from AI-generated code to a running application without a DevOps team in the loop.", + }, + { + icon: Activity, + title: "Catch issues before they become problems", + description: + "Real-time monitoring, centralized logs, and instant rollback mean that when an AI-built app misbehaves, your team can see why and recover fast—before it touches anything else.", + }, +]; + +const guardrailFeatures = [ + { + icon: Users, + title: "Separate every team's environment", + description: + "Dokploy's multitenancy keeps projects and data isolated at the team level. One team can't see, access, or interfere with another's applications, so AI experimentation stays contained without needing a separate instance per team.", + }, + { + icon: MousePointerClick, + title: "Let anyone deploy without the risk", + description: + "Non-technical users get a clean, simple interface for deploying and managing their apps. There's no CLI to learn and no config file to edit, just a straightforward path from code to running apps that doesn't require an engineer on standby.", + }, + { + icon: Network, + title: "Lock down who can reach your environment", + description: + "Configure IP allowlisting to keep your internal deployment environment off the public internet. Wildcard subdomain support means every app gets its own clean internal URL, with access controlled at the network level.", + }, + { + icon: KeyRound, + title: "Sign in with the identity provider you already use", + description: + "Dokploy supports SSO via Okta, Azure AD, Auth0, and more, with SCIM provisioning and deprovisioning. When someone joins a team, they get access. When they leave, it's revoked automatically—no manual cleanup, no lingering credentials.", + link: { + href: "/features/single-sign-on", + label: "Learn more about SSO", + }, + }, +]; + +const testFreelyPoints = [ + "Deploy AI-built apps without touching production infrastructure", + "Keep all environments fully isolated from live data and services", + "Audit logs record every action across your Dokploy environment", + "Roll back any deployment in seconds if something goes wrong", + "Run experiments that never reach customers until you're ready", +]; + +const empowerTeamPoints = [ + "Sales, design, ops—anyone can deploy an app without IT involvement", + "No infrastructure knowledge required to get from code to URL", + "Subdomain support gives every app a clean, shareable internal link", + "Security and compliance requirements are handled at the platform level", + "Promising projects can graduate to production on your own timeline", +]; + +export default function DeployAIPage() { + return ( +
+ Your teams are building with AI. Talk to an expert to learn how + Dokploy will give them a safe, governed environment to ship those + tools without touching production infrastructure or involving an + engineer. +
++ Dokploy is built to take an app from an AI coding tool to a live, + internal URL in minutes. +
++ {feature.description} +
++ AI-generated code moves fast. Dokploy's enterprise features + make sure that speed doesn't come at the cost of security or + control. +
++ {feature.description} +
+ {feature.link ? ( + + {feature.link.label} → + + ) : null} ++ A dedicated internal sandbox means your teams can move fast + without creating risk for the rest of the business. +
++ Openclaw is an open-source AI-powered coding assistant that you + can self-host on Dokploy with a single template deploy. It gives + your team a private, internal AI coding environment, and no data + leaves your infrastructure. +
++ Say goodbye to infrastructure hassles, Dokploy Cloud handles it + all. Effortlessly deploy, manage Docker containers, and secure + your traffic with Traefik. Focus on building, we'll handle + the rest. +
+