Building a server management platform is a never-ending exercise in prioritization. Every week, we receive feature requests from customers, identify improvements through our own dogfooding, and spot opportunities in the evolving Laravel ecosystem. The challenge is never "what should we build?" It is "what should we build next?"
We believe in building in public. Deploynix exists because Laravel developers deserve a deployment platform built specifically for them, and that means the community should have a voice in where the platform goes. This post lays out our roadmap transparently: what we are actively working on, what is planned for the near future, what is on our radar for later, and how we decide what to prioritize.
How We Prioritize
Before diving into specific features, it helps to understand how we decide what gets built. We evaluate every potential feature against four criteria:
Impact: How many customers will benefit, and how significantly? A feature that saves every customer five minutes per deployment ranks higher than a feature that solves a niche problem for a handful of users.
Alignment: Does this feature strengthen our core value proposition as a Laravel-first deployment platform? We intentionally avoid becoming a generic cloud management tool. Every feature should make deploying and managing Laravel applications specifically better.
Effort: How long will it take to build, and what is the ongoing maintenance burden? A feature that takes a week to build but requires constant attention is less attractive than one that takes two weeks but runs reliably with minimal maintenance.
Urgency: Is there a time-sensitive reason to build this now? Security features, ecosystem compatibility updates, and breaking-change responses get priority regardless of other criteria.
We also weight customer feedback heavily. When multiple customers independently request the same feature, that signal is hard to ignore. Our support conversations, community discussions, and direct feedback all feed into a prioritization scorecard that we review weekly.
Currently in Development
These features are actively being built and will ship in the coming weeks.
Container Support
This is the most requested feature we have ever received, and we are deep into development. Container support will allow Deploynix to manage Docker-based deployments alongside our traditional server-based approach.
The implementation focuses on what Laravel developers actually need from containers rather than exposing the full complexity of container orchestration. You will be able to define your application's container configuration through a simple Dockerfile or a Deploynix-managed template, and Deploynix will handle building, pushing, and deploying containers to your servers.
We are not building Kubernetes. We are building container deployment that feels as straightforward as our current git-based deployments. You push code, Deploynix builds the container, and deploys it with zero downtime. The same deploy scripts, rollback capabilities, and monitoring you already use will work with containerized applications.
Server Transfer Between Organizations
Currently, if you need to move a server from one organization to another, it requires a manual process through our support team. We are building a self-service transfer system that lets organization owners transfer servers cleanly, including all associated sites, databases, SSL certificates, and configurations.
This matters particularly for agencies that build projects for clients and then hand off the infrastructure. The transfer will preserve all server history and configurations while changing ownership and billing responsibility.
Enhanced Deployment Metrics
We are adding detailed deployment analytics to help teams understand their deployment patterns. This includes deployment frequency tracking, average deployment duration, success and failure rates over time, and rollback frequency. These metrics will be available both in the dashboard and through the API.
The goal is not just vanity metrics. Understanding that your deployments have gotten 30% slower over the past month, or that a particular deploy script step fails 5% of the time, gives you actionable information to improve your pipeline.
Planned for the Near Term
These features have been scoped and designed and will enter active development once current work ships.
Multi-Region Deployment
For applications that serve a global audience, deploying to a single region means some users experience high latency. Multi-region deployment will allow you to define a deployment that rolls out across servers in multiple regions, with configurable ordering and health checks between stages.
This builds on our existing load balancer infrastructure. You will be able to set up geographic load balancing so that European users hit your Hetzner servers while North American users hit your Vultr or DigitalOcean servers, all deployed and managed as a single application through Deploynix.
Database Read Replicas
Managing MySQL, MariaDB, or PostgreSQL read replicas is a common scaling pattern for Laravel applications, but setting up replication correctly is error-prone. Deploynix will automate the provisioning and configuration of read replicas, including the initial data sync, replication monitoring, and automatic failover.
On the Laravel side, we will provide configuration guidance for setting up your database.php config to use read and write connections effectively, so your application can distribute query load across replicas without code changes beyond configuration.
Team Notifications and Webhooks
Currently, Deploynix sends notifications about deployments, health alerts, and other events through the dashboard. We are expanding this with configurable notification channels: Slack, Discord, Microsoft Teams, email digests, and custom webhooks.
Custom webhooks in particular will enable powerful integrations. You will be able to trigger external CI/CD pipelines, update status pages, notify project management tools, or feed deployment data into your own analytics systems.
Staging Environments
One-click staging environment provisioning is something we have wanted to build since day one. The feature will let you clone your production server configuration into a staging environment that mirrors production as closely as possible, including database schema, server configuration, and environment variables with sensitive values masked.
Staging environments will support automatic deployment from a staging branch, so your team can test changes in a production-like environment before merging to your deployment branch.
On the Radar
These features are things we are thinking about seriously but have not committed to specific timelines. They may move into active development based on community feedback and strategic priorities.
GitOps Configuration
Instead of configuring servers and deployments through the Deploynix dashboard, GitOps configuration would let you define your infrastructure in a YAML or JSON file committed to your repository. Changes to that configuration file would trigger Deploynix to reconcile the actual infrastructure with the desired state.
This appeals strongly to teams that want infrastructure changes to go through the same code review process as application changes. It also enables reproducibility: you could spin up an identical infrastructure stack by pointing Deploynix at a configuration file.
Built-In CI/CD
Several customers have asked for basic CI/CD capabilities directly in Deploynix, specifically running tests before deployment. Currently, most teams use GitHub Actions, GitLab CI, or Bitbucket Pipelines for their test suite and then deploy through Deploynix once tests pass.
We are evaluating whether building lightweight test running into Deploynix would be valuable enough to justify the complexity, or whether deeper integration with existing CI/CD providers would serve customers better. The honest answer is we are not sure yet, and we want to hear more from the community before committing to an approach.
Managed Redis and Managed Database Services
Some customers have asked about managed database and cache offerings where Deploynix handles high availability, automated failover, and point-in-time recovery at the infrastructure level rather than the application level. This would be a significant expansion of our service scope, moving from server management into managed service territory.
We are cautious about this one. Managed databases done well require deep operational expertise and 24/7 on-call support. Done poorly, they create more problems than they solve. We would rather not offer this feature than offer a mediocre version of it.
Mobile Application
A Deploynix mobile app for monitoring servers and triggering deployments on the go comes up regularly in feedback. The core use case is clear: you get a health alert on your phone, and you want to check the dashboard, view logs, or trigger a rollback without opening a laptop.
We are leaning toward a progressive web app approach rather than native iOS and Android apps. A well-built PWA would give us the push notifications and offline capabilities that matter most while letting us maintain a single codebase.
Community-Driven Features
Some of our best features have come directly from community feedback. Scheduled deployments, for example, started as a feature request from a customer who needed to deploy database migrations during off-peak hours. Vanity domains on deploynix.cloud came from indie developers who wanted to share staging sites without configuring custom domains.
We actively track every feature request and tag them by theme. When we see clusters of requests around the same problem, that signals real demand. Here are the themes generating the most community interest right now:
Better log management: Customers want centralized log aggregation across all servers in a project, with search, filtering, and alerting. This is firmly on our radar and will likely move into active development soon.
Deployment approval workflows: Teams with compliance requirements want the ability to require approval from specific team members before a deployment proceeds. This ties into our existing organization roles (Owner, Admin, Manager, Developer, Viewer) and would add a configurable approval gate to the deployment pipeline.
Import existing servers: Several customers have servers already running Laravel applications on other platforms or manually configured servers that they want to bring under Deploynix management without reprovisioning. This is technically complex because existing servers have unpredictable configurations, but we are exploring approaches that could work for common setups.
Terraform provider: DevOps-oriented teams want to manage Deploynix resources through Terraform. Since we already have a comprehensive API with Sanctum token authentication and granular scopes, building a Terraform provider is mostly a matter of wrapping our API in the Terraform provider framework. This is something we may open-source and accept community contributions for.
What We Will Not Build
Being transparent about our roadmap also means being honest about what falls outside our scope. Deploynix is a Laravel-first server management platform, and we are intentional about maintaining that focus.
We will not become a generic cloud provider. We provision servers on DigitalOcean, Vultr, Hetzner, Linode, AWS, and custom providers, but we are not competing with those providers. We are a management layer that makes them easier to use for Laravel deployments.
We will not build a CMS or application framework. Deploynix deploys and manages Laravel applications. We do not generate application code, scaffold projects, or provide application-level services beyond what is needed for deployment and server management.
We will not chase every DevOps trend. Service mesh, serverless edge functions, AI-powered auto-scaling: these are interesting technologies, but we will only adopt them when they genuinely improve the experience of deploying Laravel applications. We are not going to add complexity for the sake of a marketing checkbox.
How to Influence the Roadmap
Your voice matters more than you might think. Here is how to make sure your feedback reaches us:
Feature requests: Submit them through the Deploynix dashboard or email our support team directly. Specific, detailed requests with real use cases are the most helpful. "I want container support" is useful. "I need container support because I run a Laravel app with a Python ML service sidecar and managing them as separate deployments is painful" is extremely useful.
Upvoting: When we share roadmap updates, engage with the features that matter most to you. Seeing concentrated interest helps us prioritize.
Beta testing: For major features, we run beta programs with interested customers. Beta testers get early access and direct influence over how the feature ships. If you want to be part of the container support beta, let us know.
Our Commitment
Roadmaps are promises, and we take promises seriously. We would rather under-promise and over-deliver than announce flashy features that slip indefinitely. Every feature listed in the "Currently in Development" section will ship. Features in "Planned" have high confidence of happening. "On the Radar" items are genuine considerations, not marketing fluff.
We will continue to publish roadmap updates regularly so you can track our progress and hold us accountable. Building Deploynix is a partnership with our community, and the best deployment platform for Laravel developers is one that Laravel developers help shape.







