---
title: Mirantis Kubernetes Engine (formerly Docker Enterprise) Reviews
meta_title: 'Mirantis Kubernetes Engine (formerly Docker Enterprise) Reviews 2026:
  Details, Pricing, & Features | G2'
meta_description: Filter 286 reviews by the users' company size, role or industry
  to find out how Mirantis Kubernetes Engine (formerly Docker Enterprise) works for
  a business like yours.
aggregate_rating:
  rating_value: 4.4
  review_count: 286
  scale: '5'
date_modified: '2026-08-09'
parent_category:
  name: Containerization
  url: https://www.g2.com/categories/containerization
---


# Mirantis Kubernetes Engine (formerly Docker Enterprise) Reviews
**Vendor:** Mirantis  
**Category:** [ Enterprise Kubernetes Management Software](https://www.g2.com/categories/enterprise-kubernetes-management)  
**Average Rating:** 4.4/5.0  
**Total Reviews:** 286
## About Mirantis Kubernetes Engine (formerly Docker Enterprise)
Mirantis Kubernetes Engine (MKE) is the industry’s leading enterprise Kubernetes platform, designed to provide organizations with total control over their strategic infrastructure. Powering some of the world’s largest production clusters, MKE 4 introduces a 100% open-source, &quot;composable&quot; architecture based on k0s. This shift allows platform engineers to precisely tailor their stack by swapping in validated CNCF ecosystem components for networking, ingress, and storage, avoiding the &quot;black box&quot; limitations of proprietary distributions. MKE delivers an &quot;enterprise-ready&quot; experience out of the box, featuring a convenient web UI, declarative lifecycle management, and automated drift correction. It uniquely supports a converged infrastructure, allowing organizations to manage both containerized workloads and virtual machines (via KubeVirt) on a single platform. For mission-critical environments, MKE maintains a rigorous focus on security with FIPS 140-2 encryption and a hardened, DISA STIG-certified foundation. Whether running on-premises, in the cloud, or at the edge, MKE provides the stability, performance, and flexibility required for modern cloud-native applications and generative AI workloads.



## Mirantis Kubernetes Engine (formerly Docker Enterprise) Pros & Cons
**What users like:**

- Users value the **ease of use and robust security** features of Mirantis Kubernetes Engine for deployments. (3 reviews)
- Users appreciate the **ease of use** of Mirantis Kubernetes Engine, making it simple to configure and manage Kubernetes. (2 reviews)
- Users value the **wide range of features** in Mirantis Kubernetes Engine, ensuring high-quality deployments and robust security. (2 reviews)
- Users appreciate the **flexibility of cloud integration** with Mirantis Kubernetes Engine for seamless Kubernetes deployment across various clouds. (1 reviews)
- Users find the **easy deployment** of Mirantis Kubernetes Engine a significant advantage for quick and efficient setup. (1 reviews)
- Easy Setup (1 reviews)
- Security (1 reviews)
- Simple (1 reviews)
- Stability (1 reviews)
- User Interface (1 reviews)

**What users dislike:**

- Users note that **complex learning** challenges may arise, especially for teams without Kubernetes expertise, hindering efficient use. (1 reviews)
- Users find the **complex setup** for networking to be time-consuming and requires significant effort to complete. (1 reviews)
- Users find the **difficult learning curve** of Mirantis Kubernetes Engine challenging, especially without specialized resources or expertise. (1 reviews)
- Users find the **learning curve challenging** , especially for those without dedicated Kubernetes expertise or resources. (1 reviews)
- Users find that **learning difficulty** persists due to the time and effort needed to master advanced features. (1 reviews)
- Networking Issues (1 reviews)
- Users struggle with **poor customer support** , often requiring DIY fixes instead of receiving timely assistance from support engineers. (1 reviews)
- Technical Expertise Required (1 reviews)

## Mirantis Kubernetes Engine (formerly Docker Enterprise) Reviews
  ### 1. Develop-test-deploy-iterate in fast forward

**Rating:** 5.0/5.0 stars

**Reviewed by:** Georgios G. | IC Digital Design Engineer, Semiconductors, Mid-Market (51-1000 emp.)

**Reviewed Date:** December 11, 2015

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Docker is a clean an elegant way to organize your development and testing environments. Also you get the deployment systems for free since it's the same container as your the one you develop. Docker helps you strip out the unnecessary elements of a system leaving you with a clean and complete (for your purpose) system. This fact saves many resources in the deployed version. Furthermore Docker is enhancing re-usability and maintenance. 

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Documentation is not structured enough. You have to search all over the internet to get what you need. And still it helps you only until the intermediate level, while there are plenty more aspects in Docker that can make your productive reach the ceiling. 

**Recommendations to others considering Mirantis Kubernetes Engine (formerly Docker Enterprise):**

Analyse how much you need docket before incorporating it. You might result in a situation that you don't get very beneficial but you have already adjusted your workflow. You might be happy with traditional VMs and get tricked by the trend. 
Another thing to keep in mind is that Docker itself will not give you a complete solution. You have to do a research for other tools that will make Docker shine (eg swarm or tutum). 

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

Easy and straightforward deployments. Minimize time-to-deployment factor. Have an easy, clean and uniform workflow among all the members of the team.

  ### 2. With Docker, your apps and services can declare independence from your host OS.

**Rating:** 4.0/5.0 stars

**Reviewed by:** Matthew S. | Senior Software Engineer, Financial Services, Small-Business (50 or fewer emp.)

**Reviewed Date:** December 02, 2015

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Docker popularized the practice of running apps and services inside isolated containers. The underlying technology and practices were already available to a degree, but to use those technologies in a meaningful way, you once had to build quite a bit of tooling and infrastructure on your own.

Docker-the-tool makes this process easier using a friendly API and CLI, and because Docker-the-company is well funded, additional tools have emerged that make the process even simpler. For example, docker-compose lets you spin up an entire cluster of interconnected containers on your local machine using a single YAML file. Then, you can make some minor changes to that file, and use the Tutum service to manage deploying a cluster of production machines running those same service.

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

There is still a lack of coherent documentation that describes how to build an entire stack of software, with horizontal scaling, zero-downtime deploys, and so forth. There are also some security-related anti-patterns  that can be easily overlooked at first (such as using the "root" user inside a container).

It can also be difficult or impossible to work on "Dockerfiles" (build scripts for docker images) when you have no connectivity, limited connectivity, or bandwidth caps. This is due to a need to re-run the entirety of any step that was changed. For example, if you have a step that pulls in 100MB of packages, and you want to add one more package to that list, then rebuilding will cause the entire set of packages to be re-downloaded in the typical use case.

Finally, with some types of language ecosystems, it's difficult to run a development environment inside a set of containers while also using a hot-reloading environment. You can build and test containers locally pretty quickly, but that is still slower than not rebuilding at all in those types of development scenarios.

**Recommendations to others considering Mirantis Kubernetes Engine (formerly Docker Enterprise):**

Pay attention to good security practices, and to avoid corresponding anti-patterns. 

Use "docker-machine" to isolate your Docker environment on your development systems. 

Use "docker-compose" to prepare stacks of containers to run in your development environment.

Evaluate the Tutum service (recently acquired by Docker, Inc.) as a way to deploy stacks of containers to your production and QA infrastructure.

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

We chose to replace a monolithic, vertically-scaled app deployment system with horizontally-scaled Docker containers running on AWS and managed by the Tutum service.

So far, the direct benefits we've realized have been faster deployment times, easier and more trustworthy deployment workflows, and better separation and monitoring of services at runtime.

The net effect has been that our app and its services have been performing faster, we are deploying more frequently, and we can now modularize our code more effectively to optimize for memory consumption.

Last but not least, we achieved a reduction in our monthly hosting costs!

  ### 3. Docker- a more genuine path to the goals Virtual Machines try to solve

**Rating:** 4.0/5.0 stars

**Reviewed by:** Jake D. | Software Engineer, Mid-Market (51-1000 emp.)

**Reviewed Date:** December 02, 2015

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Docker makes the process of getting through the domain knowledge about Linux Containers much easier than going through old, traditional methods. Throwing aside the need to juggle dozens of separate concerns, everything goes through the container system, giving you a simple CLI to create a large, dynamic system of interworking components simply.

In other words, Docker makes setting up new servers as fast as downloading a container from a repo and starting it. It also does it to a strength that traditional VMs just can't manage- Docker Containers are small, performant, and guaranteed rock-solid.

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Documentation when I wrote most of what I did with Docker was inconsistent, and half of it was contained on blogs somewhere on the internet. On top of this, the community can be a bit purist- if you're not doing things "their way", often other users whom you seek help from will throw up walls to getting the solution you need.

Also, there's a lot of obvious quality-of-life improvements needed throughout the software, but as relatively young software this is unsurprising, and the situation improved rapidly even in the months I was working on Docker project.

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

The two biggest problems Docker solves easily, is that of making a server reproducible, and setting up development/testing environments easier.

With the right Docker setup, you could have a single command(using Vagrant) that will bring up any number of containers necessary to run your entire app or test suite, while using almost no resources unrelated to the actual processes involved. This also makes the process of parallelizing heavy tasks, like large test suites, much easier.

But the biggest benefit, is simply time. When your VirtualBox or VMWare setup goes wrong for some reason, it often requires a full re-build, which often takes ~30 minutes. Even the daily bootup requires 5 minutes, often.

On the other hand, you've got Docker- the first time you bring a container down, the download time is the only thing you're limited by. After it's downloaded, it's near instant to have anything running- and with the sophisticated caching measures Docker uses to make VM automation feel like Git, that first time build is often shortened to seconds.

  ### 4. Docker Helps Developers of All Sizes Simplify Their Workflow

**Rating:** 4.5/5.0 stars

**Reviewed by:** Andrew M. | Founder, Computer Software, Small-Business (50 or fewer emp.)

**Reviewed Date:** December 02, 2015

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Docker is a tool that allows for developers of all size to develop and deploy applications with confidence and in a streamlined manner. Docker images allow for the exact environment you develop on to be used in test and prod, reducing bugs from changing environments. The community is fantastic and there are plenty of resources for developers that simply want to manually "docker push" and "docker run", or perform enterprise level cluster management with tools like Kubernetes.

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Some of the tools in the Docker ecosystem-- the software that helps you actually *use* Docker in production-- is a little young. Tutum (recently purchased by Docker) allowed for even small developers to compose services and connect them together with software-defined networks and service discovery, but other self-hosted alternatives are still maturing. In essence, while the community is a strength, it is also a weakness-- it's in development and will still take time to fully develop.

**Recommendations to others considering Mirantis Kubernetes Engine (formerly Docker Enterprise):**

Evaluate Docker before you commit to using it-- there's a lot of situations where Docker isn't right for your company.

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

The development to test to production workflow is extremely difficult to get right. Small development shops may be able to setup a CI/CD platform, such as Jenkins, GitLab CI, or a hosted solution like Travis, but these test environments are not the same as the production platforms. Docker eliminates the differences between each stage of development.

  ### 5. I have been using Docker since their first public release and got hooked immediately.

**Rating:** 5.0/5.0 stars

**Reviewed by:** Paul L. | Assembler, Automotive, Enterprise (> 1000 emp.)

**Reviewed Date:** December 02, 2015

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

I am always interested in the development of software, Docker nonetheless. That means that I'm trying to watch the commit history very carefully on Github and so i will be ahead and aware of new features that will show up in the upcoming release. 

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

The toolkit around docker is rather large and sometimes there seems to be along way until you get to docker. You have docker-machine which can boot docker rather fast but lets take this step further. Now i want to boot docker on three different providers, add a scheduler (docker-swarm) and high-availability (a consul-cluster outside of docker) we are starting to get there but this is rather complex. I still miss scaling up and down depending on usage thresholds.

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

Metal as a service seems to grow in popularity. Combine this with a micro service architecture you would get a lot af bang for your bucks. Direct access to your hardware. Take a look at packet as an example. Checkpointing memory from a container and restore it to a docker daemon in another datacenter would allow you to continue where you left off in another country. Moving a session of the game quake 3 arena from one side off the world to another is something i always wanted to do on friday evening.

  ### 6. Docker enables us to do Continuous Delivery at Scale

**Rating:** 5.0/5.0 stars

**Reviewed by:** Vivek J. | Senior Developer / Architect (Cloud Infrastructure) - on contract, Computer Software, Mid-Market (51-1000 emp.)

**Reviewed Date:** November 30, 2015

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Docker enables us to leverage Containers to create disposable, immutable and a consistent infrastructure for our Developer teams. The user experience of using Docker and the related workflow is fantastic. The learning curve is not steep, allowing our developers to adopt it quickly in their development process. The Docker ecosystem is extensive, allowing us to invest in using and building tools that powers our Continuous Delivery Pipeline. The simplicity of the product is the best part of the overall experience. The pace of innovation in Docker and the related community allows us to focus on providing better developer experience at all times. 

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

We had issues with Docker on different file system drivers like DeviceMapper. (AUFS works for us without issues right now).  Also, we are not using Docker for persistent services like Database that requires us to use Host volumes. Docker's support for persistent containers is still patchy, and is not a permanent solution. Rather we would invest on using Distributed shared file system to be able to sustain persistent containers. Concurrent Docker image pulls also fail for some file system drivers used with Docker. Security assessment of Docker images is still in very early stage, and is something that is causing friction with our Security teams for mass adoption. 


**Recommendations to others considering Mirantis Kubernetes Engine (formerly Docker Enterprise):**

Its important to setup a pilot project, ideally a non-critical small scale one, to evaluate Docker. One must also consider integration of Docker with the Continuous Deployment pipeline. Invest in a clustered scheduler like Swarm or Mesos to perform deployment of the Docker container images onto the Docker hosts. Look for impact on your software development process, especially the Service discovery mechanism and persistence services.

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

We are building a Continuous Delivery Infrastructure for our Development teams using Docker. This allows us to ship products faster, and more reliably to the Production environment. For business, it means that Technology teams are able to release software faster. We are also solving the problem of scaling our applications quickly to meet user demands. 

The adoption of Docker has allowed us to use standard Container image format as the final deployable, instead of moving Code Packages to the Production environment. This helps us to standardize our deployment unit in the form of a portable Container image. The Docker workflow allows to integrate Docker with our CD pipeline. The integration services including API is very easy to work with. Docker events helps us to capture audit trail while users are using the system. This helps us to better catch metrics as the users use the system. The use of layered file system in Docker allows us to build container images quickly, allowing us to create immutable systems. 

  ### 7. Functional but not perfect

**Rating:** 3.5/5.0 stars

**Reviewed by:** Lukas S. | CTO, Internet, Small-Business (50 or fewer emp.)

**Reviewed Date:** November 30, 2015

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Easy to spawn new environments for testing, using container images identical to those already running on production systems to easily reproduce problems found in production. Also it enables for quick and easy setup of development environments, without the hassle of explaining everybody how to configure a web-server or other software.

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

This stateless stuff is all cool but it has some drawbacks.
Sometimes there are security updates, just tiny updates, but if you want to update them the normal way to go is to actually rebuild the whole container, and maybe upload a few hundred megabytes of data to a few dozen servers, this gets really annoying, and there doesn't seem to be any nice solution to this.

**Recommendations to others considering Mirantis Kubernetes Engine (formerly Docker Enterprise):**

At the moment i'd suggest staying away from Hub images if you want to use Docker in production.
Images change from time to time and some (mostly inofficial) images are out of date, possibly being a security problem just waiting to be exploited.

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

Like said above we use it to be able to reproduce production errors in a very similar environment, this makes bugs that appear on production a lot easier to reproduce and fix. It also allows us to set up new testing or development environments in just a few minutes, where most of the time actually is spent on copying over a database or some image files.

  ### 8. Great tool for DevOps

**Rating:** 5.0/5.0 stars

**Reviewed by:** Jianyu T. | Technical Architect, Information Technology and Services, Enterprise (> 1000 emp.)

**Reviewed Date:** December 20, 2015

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

The best way to eliminate typical dev / testing / prod environment issue

Simplified the deployment practice for most service systems.

Also contains a large number of pre-built images includes most frequently used services, nginx, mysql, etc. Implemented a new way to setup a service with nearly 0 impact on the host.



**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Different running model compares to traditional software development / deployment method

Introduced a little complicated management of networking / storage

Difficult to remote manage / monitoring

Resource sharing between containers or hosts is complex

The docker hub is limited to free user, can only have one private image

The private image repository / registry is a little complex to setup.

**Recommendations to others considering Mirantis Kubernetes Engine (formerly Docker Enterprise):**

This is the trend for future SaaS development and operation


**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

Setting up new services including vpn, gitlab, jenkins by using docker images is pretty simply now.


  ### 9. Excellent tool for rapid devops

**Rating:** 5.0/5.0 stars

**Reviewed by:** Stewart H. | Principle Engineer, Financial Services, Mid-Market (51-1000 emp.)

**Reviewed Date:** January 28, 2016

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

The reproducibility for developers.  Got a bug in production?  Simply take a copy of the container running in production, load it on your desktop, open up a few ports, and start debugging.

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

The ramp up time and mental model is pretty heavy.  It is not like running an application on your desktop.  Pretty much anything that you have done developing on your desktop is quite different such as mounting a drive, connecting to a socket, etc.

**Recommendations to others considering Mirantis Kubernetes Engine (formerly Docker Enterprise):**

Watch the release as they have had a few that aren't backwards compatible that have caught us off guard.

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

We are containerizing our software for quicker releasing and a more scalable product.

  ### 10. A great product

**Rating:** 4.0/5.0 stars

**Reviewed by:** David W. | Software Engineer, Internet, Mid-Market (51-1000 emp.)

**Reviewed Date:** December 02, 2015

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

There are two features that I really love about Docker:
1. My development environment and production environments are the same, because both environments are running the same container.
2. Deployments are easy and the same deployment can be used by any team that deploys Docker containers.

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

The biggest pain points I've had with Docker are:
1.  Network issues:  Sometimes networking can be confusing when you're running a container.
2. Uploading Docker images to your Docker registry: the images can be quite large.  And, given that they use a union file system, you can run out of i-nodes which can be surprising

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

Where I work, we are providing tools to internet marketers.  The biggest benefits of using Docker are ease of deployments and the consistency of the deploys.

  ### 11. Scalable and works on every platform

**Rating:** 4.0/5.0 stars

**Reviewed by:** Sean B. | Small-Business (50 or fewer emp.)

**Reviewed Date:** December 10, 2015

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

I really like that I can download and distribute software that I know is guaranteed to work without any distribution specific differences.

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

A minor annoyance when installing software is that I have to specify what repo. It would be nice if I could just tell it to install a package and if I didn't specify repo it would prompt from some of the most popular ones.

**Recommendations to others considering Mirantis Kubernetes Engine (formerly Docker Enterprise):**

Docker works great while keeping files in sync with your Git repo. Just don't substitute one for the other.

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

I'm able to send docker images to friends and not have to worry about their environment not being sane. This is a great benefit and allows us to quickly setup more than one development environment.

  ### 12. Excellent Software with a few growing pains.

**Rating:** 4.0/5.0 stars

**Reviewed by:** Scott M. | DevOps Engineer, Defense & Space, Mid-Market (51-1000 emp.)

**Reviewed Date:** December 14, 2015

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Makes it quick and easy to deploy software on Linux. Tools available make building tiny, sandboxed, secure packages a breeze. Allows me to be confident that my services will run exactly the same way on my laptop and on my server.

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Docker Hub is sometimes slow. Docker Private Registry is extremely unreliable when backed by S3. Docker Private Registry is not horizontally scalable. Docker is not truly "run anywhere" because it's architecture and OS-dependant. Much of the community is following poor practices by using Ubuntu as their base image, creating images that are far too large.

There is not yet a really good way to handle shared disk (such as NFS)

**Recommendations to others considering Mirantis Kubernetes Engine (formerly Docker Enterprise):**

Be sure to think about how you are going to deploy Docker, and embrace a microservices architecture. The Larger your Docker images get, the more difficult they are to deploy quickly.

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

Need to speed up and streamline CI/CD, as well as saving cost.

Building a Docker image takes seconds, vs building an AMI which takes at least 5 minutes.

Spinning up a local environment is much simpler with Docker than with VMs, and much more consistent.

Makes Operations and DevOps significantly simpler than with using AMIs or scripting installation at boot time.

  ### 13. Perfect for quick deployment of standard web system

**Rating:** 4.5/5.0 stars

**Reviewed by:** Verified User in Information Technology and Services | Enterprise (> 1000 emp.)

**Reviewed Date:** March 12, 2016

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Application level containers. You can quickly setup and system by spinning up the various images, without lengthly installation or setup. 

For e.g., you can quickly get a nginx, redis, hapi server, and mongodb up and running in a matter of minutes. 

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Docker is still fairly new, and bugs can be found here and there, and still lacking in some features. But in general, there is very little to dislike.

**Recommendations to others considering Mirantis Kubernetes Engine (formerly Docker Enterprise):**

Fantastic work, and going in the right direction. Good and useful features that were requested are in the roadmap and several have released recently.  

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

Setting up an analytics platform. The primary benefit is the ease of deployment.

  ### 14. Docker makes deployment easy

**Rating:** 4.5/5.0 stars

**Reviewed by:** Verified User in Computer Software | Small-Business (50 or fewer emp.)

**Reviewed Date:** December 10, 2015

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

That its popular, free, and open source! There's a huge community backing for it, and any help you need is usually just a Google search away. There already exist many containers for the typical software stacks that you might need: nginx, nodeJS, Postgres or MySQL... And if it doesn't exist yet, you can make your own.

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

As with any new deployment technology, it takes a bit of a learning curve. Not a large one, but typically when you introduce a new layer of tech to your colleagues, they might groan due to the fact that it's once again another layer they have to deal with. Yet I feel that it's worth going through the effort to learn it.

**Recommendations to others considering Mirantis Kubernetes Engine (formerly Docker Enterprise):**

Give it a moment of your time! It's awesome.

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

Deployment on different machines, with different hardware. Typically whenever you set up required software on a machine, you SSH into it, then have to go through a standard configuration of it to set it up. Docker makes it more simple.

  ### 15. Excellent Software

**Rating:** 5.0/5.0 stars

**Reviewed by:** Verified User in Computer Software | Small-Business (50 or fewer emp.)

**Reviewed Date:** December 07, 2015

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

The ability to build a container that will run the same anywhere is immensely useful and just feels like the correct way to deploy software.  This is a transformative concept that can help improve many aspects of software development within an organization.

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Docker hub is very feature light right now.  Currently it just stores images, which it does very well, but it would be nice to see some integrations with service providers that can run the containers.  This seems like a good area for Docker (the company) to expand their paid offering.  It was a bit of a pain for me to figure out how to run a container on Amazon and Google as it required learning all about their proprietary products.  It would be a nice benefit if Docker Hub had some ready-made integrations to click a button and have the container run (and dynamically scale) somewhere.  This of course is a separate matter from the actual Docker software, but it would make the paid offering worth more if such functionality were included.

**Recommendations to others considering Mirantis Kubernetes Engine (formerly Docker Enterprise):**

Do it.

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

I needed to deploy a complex application where the setup had many complex steps.  With alternative deployment techniques this it would have meant a lot of effort tailoring different environments to the specific needs of the system and training developers on all the details of operating it locally.  With Docker, the container just becomes an executable thing that runs anywhere Docker does.  This lets our team work on other important tasks and avoid maintaining servers where this system runs.

  ### 16. A great way to make sure your dev and prod environments are in sync

**Rating:** 4.0/5.0 stars

**Reviewed by:** Verified User in Internet | Enterprise (> 1000 emp.)

**Reviewed Date:** November 30, 2015

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Docker allows one to roll exactly the same environments on various hosts, not depending on host OS. With support for user namespaces docker provides one more step to perfect containerization. There are a few software solutions that allow one to build on Docker if more complexity is required, Kubernetes and Mesos come to mind, but even the bare-bones Docker or paired with Swarm is a good option for simple deployments.

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Some isolation issues are questionable, and it's absolutely not a replacement if the solution requires a dedicated VM. Docker is not easy to scale in some medium-sized environments, where Swarm is not enough and Mesos is overkill. Several hosts require careful attention to data volumes and data migration. The official repository contains lots of images with very questionable content, basically if Docker is used in prod one'd better forget about official repo existence.

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

Docker is used in a small clustered environment with geographically distributed machines. Together with etcd and ceph it provides the reliability for jobs in it. Docker makes it easy to scale jobs and move them between the hosts.

  ### 17. Jet set go!

**Rating:** 5.0/5.0 stars

**Reviewed by:** Maheedhar G. | Professional Services - Solutions Architect, Computer Software, Mid-Market (51-1000 emp.)

**Reviewed Date:** December 18, 2015

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Environment can be isolated and all the libraries necessary can be provided to each container separately. This simplified the deployment by leaps and bounds by avoiding in-consistencies,

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

no easy dashboard like interface. Kubernetes is evolving to handle a lot of the deployment but more functionality should be added. Jenkins integrations will be also great to have.

**Recommendations to others considering Mirantis Kubernetes Engine (formerly Docker Enterprise):**

make sure to do a POC and quantize the ROI. Must try!

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

We have been deploying microservices and using modern concepts like hysterix which enables dampening of services in the case of failure. Docker is a very natural way to handle such scenarios.

  ### 18. Personal experience in Docker usage

**Rating:** 3.5/5.0 stars

**Reviewed by:** Gerardo S. | NExT - Smart metering and measure management - Team Leader & Scrum Master, Enterprise (> 1000 emp.)

**Reviewed Date:** February 11, 2016

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

As a developer, docker containers are the best way to focus only on the business logic of an application, without thinking about the infrastructure layer. The Docker HUB is a great repository where you can find the container that fits your requirements.

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

A container caches some data in a particular folder of the server, and is so difficult to retrieve and delete this data if related container was eliminated. 

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

I'm involved, as IT Engineer, in a research project for preserve and promote Cultural Heritage for an IT worldwide factory. We want to build a system based on modern technologies like containers, microservices and so on.

  ### 19. Uniform Deployment Model for any Application

**Rating:** 5.0/5.0 stars

**Reviewed by:** Verified User in Computer Software | Small-Business (50 or fewer emp.)

**Reviewed Date:** November 30, 2015

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Docker provides a set of capabilities to package and deploy almost any user-space application. It allows you to treat all applications in the same manner and set limits to what resources that application can consume without having to create a heavy weight VM. It's enabling developers and operations teams to create resilient platforms that deliver greater repeatability, lower complexity and greater uptime.

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Docker is going through a maturity phase. Lots of tools are solving the same problems. Delivering stateful (database) applications with docker can be challenging but the ecosystem is improving rapidly.

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

Docker has helped me standardize the platforms that development, QA, and customers use to run the software. Because the containers run the same image, the amount of uncertainty between the environments has been reduced. This means that installation becomes simpler and less time is spent troubleshooting environment specific problems.

  ### 20. Solve the "works on my laptop" problem

**Rating:** 5.0/5.0 stars

**Reviewed by:** Verified User in Computer Software | Mid-Market (51-1000 emp.)

**Reviewed Date:** January 25, 2016

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Simply put, docker has completely changed the way that my team & I develop. If you want to test out a database real quick? Find a container, boot it up, write some client code and start kicking at the wheels. Write a script and pull down an entire environment to test locally. It's incredible. With improvements around docker networking, we've started emulating problems like network latency and partitions on our dev machines.

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Most of the complaints I would have are now gone (i.e. registry authentication problems, networking support). There are still some young products in the Docker family like Swarm which didn't come out as well as they looked.

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

Docker has solved the "works on my laptop" problem. The ability to spin up some containers and re-create the exact environment that lead to a defect in production is so powerful, you'll forget how you did anything before.

  ### 21. Usable Containerization

**Rating:** 5.0/5.0 stars

**Reviewed by:** Jonathan K. | Project Manager, Mid-Market (51-1000 emp.)

**Reviewed Date:** April 03, 2016

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Easy to  install, and when you update you Linux-Kernel the conatiners are updated as well.

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

The Networking and scaling is  rather complicated.

**Recommendations to others considering Mirantis Kubernetes Engine (formerly Docker Enterprise):**

Rkt is also worth looking at.

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

Test suites for new builds, perfect conteiners for building packages 

  ### 22. An excellent tools for DeVops

**Rating:** 5.0/5.0 stars

**Reviewed by:** Carlos Eduardo C. | Full-stack web developer, Small-Business (50 or fewer emp.)

**Reviewed Date:** December 09, 2015

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Fast and aesy apps deployment, independent deployments, isolated containers that carries all the dependencies and configuration needed with it and easy to learn and use.

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

For now  docker only supports amd64, but there are ARM images that could be use on raspberry pi, check this link: http://blog.hypriot.com/downloads/

**Recommendations to others considering Mirantis Kubernetes Engine (formerly Docker Enterprise):**

If you, need to deploy apps in many servers, work with different OS, use different programing languages, services like web servers or email servers, etc. You will find in Docker one of the best tools in the industry.

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

Apps deployment and service management

  ### 23. A very easy, scale-able, simple virtulisation tool, fit for most cases - but not all.

**Rating:** 4.0/5.0 stars

**Reviewed by:** Toby A. | Developer, Small-Business (50 or fewer emp.)

**Reviewed Date:** December 10, 2015

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

The pure simplicity of using a Docker file allows you to rapidly set up and deploy your environment.

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

The build process is rather time consuming and annoying.

**Recommendations to others considering Mirantis Kubernetes Engine (formerly Docker Enterprise):**

Make sure Docker will fit into your environment. Docker DOES use resources, and running multiple VMs may not be as cost efficient as spinning up rented hypervised servers from cloud hosts such as DigitialOcean or Linode.

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

I'm in need of deploying, destroying, and updating multiple game servers at any given time. Docker allows me to spin up these instances, almost instantly.

  ### 24. Good product

**Rating:** 4.0/5.0 stars

**Reviewed by:** Verified User in Computer Software | Mid-Market (51-1000 emp.)

**Reviewed Date:** June 09, 2016

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Container organization of the content is its best feature.

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

It gets confusing initially and does not give out right error messages

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

Trying to organize back end and front end in different containers.

  ### 25. Docker is good!

**Rating:** 4.0/5.0 stars

**Reviewed by:** Eliezer A. | Desenvolvedor, Program Development, Small-Business (50 or fewer emp.)

**Reviewed Date:** December 10, 2015

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Docker is an excellent tool for web software development. With full documentation and easy accessibility, Docker Hub provides any base required for use. The benefit of being able to share the test environment with other developers is fantastic.

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Experience with Windows leaves a little to be desired, but not exclusively because of Docker, rather due to the fact that Windows does not follow the architecture of Unix-based systems.

**Recommendations to others considering Mirantis Kubernetes Engine (formerly Docker Enterprise):**

Great to provision development environment and testing.

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

Development and testing environment.

  ### 26. Docker - Next Generation Open source environment.

**Rating:** 4.0/5.0 stars

**Reviewed by:** Verified User in Information Technology and Services | Mid-Market (51-1000 emp.)

**Reviewed Date:** November 30, 2015

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Light weight, highly extensible open-source environment with a great repository of images. Repository would help in creating standard environments more effectively. 

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Takes a lot more learning curve but can significantly help if there is a GUI for newbies. Role based security would help managing images more efficiently in the enterprise world. Local repositories would help better in an enterprise world then actually using the centralized repository. 

**Recommendations to others considering Mirantis Kubernetes Engine (formerly Docker Enterprise):**

Docker really is helpful for system administrator to be able to efficiently deploy most common deployments of a Web-based, J2EE or Cloud based applications, 

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

Trying to test healthcare framework to be able to deploy on multiple user environments as a product for performance and scalability testing. We were able to test for a most possible enterprise environments for average benchmarks.

  ### 27. Much easier than VMs

**Rating:** 4.0/5.0 stars

**Reviewed by:** Mohsen A. | Principal Software Engineer, Information Technology and Services, Mid-Market (51-1000 emp.)

**Reviewed Date:** December 11, 2015

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Docker is great because it's low weight and fast to start an image. The community adoption is great and it's easy to find Docker images for common applications we use every day.

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

The UI (Kitematic) can be better. It's sometimes buggy and hard to work with. Using Docker in Windows is not as straightforward as Mac and Linux.

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

We manage our applications using Docker now. It made our deployment process easy to understand and extend. 

  ### 28. A nice software for deploying apps

**Rating:** 4.5/5.0 stars

**Reviewed by:** Verified User in Electrical/Electronic Manufacturing | Mid-Market (51-1000 emp.)

**Reviewed Date:** December 03, 2015

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

The documentation is great, there is way less trouble to deploy things with docker. There is a lot of pre-built images and the image directory is quite well populated. Docker is a massive have a massive CPU advantage compared to VMs and it's really quick to put everything in place.

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

At first, the software was not so stable and some features were missing but now all of that is solved.

**Recommendations to others considering Mirantis Kubernetes Engine (formerly Docker Enterprise):**

Just have a look at the tutorial, it's quite well done.

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

On my case, Docker has been used for improving my workflow and to deploy things in an easier way. It's also much easier to do quality control and continuous development now.

  ### 29. I've used Docker for personal projects.

**Rating:** 5.0/5.0 stars

**Reviewed by:** Verified User in Computer Software | Small-Business (50 or fewer emp.)

**Reviewed Date:** December 11, 2015

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

The simplicity and ease of use of the Docker container runtime make it an attractive tool for users of all levels of experience. The Docker documentation is robust, well written, and easy to follow. It's also an open source project with a large and growing community, so support and maintenance of the product is quite active.

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Nothing at the moment. I think there are small improvements to be made in terms of conciseness in commands for tasks like cleaning up dangling images and old containers.

**Recommendations to others considering Mirantis Kubernetes Engine (formerly Docker Enterprise):**

Just try it out and use it if it works for you. That's the wonderful thing about free software.

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

N/a

  ### 30. Docker is Awsomw

**Rating:** 5.0/5.0 stars

**Reviewed by:** Verified User in Online Media | Mid-Market (51-1000 emp.)

**Reviewed Date:** December 16, 2015

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Up and running in seconds.

Just to give you an example, at work I wanted  to have ELK deployed to gather  the Juniper SRX logs and display on Kibana Dashboard, guess how much work I did for that.

docker pull junaid18183/elk
docker start <some options >

and its up and running. 

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Networking in Docker is nightmare, but slowly and steadily its improving with good sub projects like compose  

**Recommendations to others considering Mirantis Kubernetes Engine (formerly Docker Enterprise):**

Go give a try and you will love it, it just works!!

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

New hires  are productive from day one.
It just works , across  the machines be it my laptop or server. 

  ### 31. Develop from scratch

**Rating:** 5.0/5.0 stars

**Reviewed by:** Verified User in Information Technology and Services | Small-Business (50 or fewer emp.)

**Reviewed Date:** December 10, 2015

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

When I started to use Docker a discoverd a new way to develop combining quickly the technologies that I use generally. I have very appreciate it when I'm starting a new project so I can build a prototype using less time comparing the old way. 

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Currently it's still too complicated manage the images and container so could be hard to learn all features. I'd like to see more official tutorials so understanding in deep how docker works.

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

Creating prototipe quickly and carefree deployment.

  ### 32. Docker,the point is not itself,but it's ecosystem.

**Rating:** 5.0/5.0 stars

**Reviewed by:** Li J. | Founder, Information Technology and Services, Small-Business (50 or fewer emp.)

**Reviewed Date:** December 02, 2015

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Application as code, almost application whatever native or legacy .all of them can dockerlization.

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Don't control all . do your best. I don't think docker is the best solution of VDI.

**Recommendations to others considering Mirantis Kubernetes Engine (formerly Docker Enterprise):**

Because China's GFW, We download docker image from DockerHub is very slow, it's very bad.

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

DevOps. 

  ### 33. It has been a great tool for make the development more agile

**Rating:** 3.5/5.0 stars

**Reviewed by:** Verified User in Telecommunications | Small-Business (50 or fewer emp.)

**Reviewed Date:** December 11, 2015

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Dockerfile format is easy to understand the incorporation of docker composer was also a great addition because I can do orchestration of docker containers without installing anything new

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Support multiple Dockerfile .. or a Dockerfile with several instances, for doing testing on different environments (os, software version, etc) would be super useful

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

I've solved just the problem of having an homogeneous environment where I can guarantee that the product that I develop will run fine.

  ### 34. Docker for development environments

**Rating:** 4.5/5.0 stars

**Reviewed by:** Verified User in Internet | Small-Business (50 or fewer emp.)

**Reviewed Date:** December 02, 2015

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

We've gotten rid of vagrant for local development environments

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

One of the most recent docker-compose releases had broken output and it took me a while to figure out what had happened.

**Recommendations to others considering Mirantis Kubernetes Engine (formerly Docker Enterprise):**

Use the quickstart terminal!

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

We're solving problems around onboarding and delivery. New hires can simply download the docker toolbox and build our images, rather than farting around for half a day setting up vagrant

  ### 35. Helped me model my infrastructure in a development environment

**Rating:** 5.0/5.0 stars

**Reviewed by:** Verified User in Computer Software | Small-Business (50 or fewer emp.)

**Reviewed Date:** December 03, 2015

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

I like that it is infrastructure as code.  It is repeatable and I can share it.

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

There can be a fair bit of setup involved before you get a useful network of services.

**What problems is Mirantis Kubernetes Engine (formerly Docker Enterprise) solving and how is that benefiting you?**

Testing software before it goes into production.  Trying to make it as close to production as possible while it is on my computer.

  ### 36. Polyglot Platform as a Service hosting

**Rating:** 3.5/5.0 stars

**Reviewed by:** Jared T. | Solutions Architect, Enterprise (> 1000 emp.)

**Reviewed Date:** December 18, 2012

**What do you like best about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Polyglot hosting with variety of options, including perl which is not supported by some of the other platforms I've seen. database agnostic which is nice compared to heroku, has a free plan as well as very inexpensive entry level, provides ssh access

**What do you dislike about Mirantis Kubernetes Engine (formerly Docker Enterprise)?**

Does not officially support windows deployment, had some difficulty deploying a rails app

**Recommendations to others considering Mirantis Kubernetes Engine (formerly Docker Enterprise):**

Nice platform as a hosting option as alternative to heroku


## Mirantis Kubernetes Engine (formerly Docker Enterprise) Discussions
  - [What is the best way to use docker enterprise  ?](https://www.g2.com/discussions/32240-what-is-the-best-way-to-use-docker-enterprise) - 1 comment, 1 upvote
  - [What are there vision for Docker Enterprise in ext 5 years?](https://www.g2.com/discussions/31747-what-are-there-vision-for-docker-enterprise-in-ext-5-years) - 1 comment, 1 upvote
  - [How do I run Docker without sudo access?](https://www.g2.com/discussions/how-do-i-run-docker-without-sudo-access) - 2 comments, 1 upvote
  - [What is Mirantis Kubernetes Engine (formerly Docker Enterprise) used for?](https://www.g2.com/discussions/what-is-mirantis-kubernetes-engine-formerly-docker-enterprise-used-for) - 1 comment
  - [What is Docker engine enterprise?](https://www.g2.com/discussions/what-is-docker-engine-enterprise) - 1 comment

- [View Mirantis Kubernetes Engine (formerly Docker Enterprise) pricing details and edition comparison](https://www.g2.com/products/mirantis-kubernetes-engine-formerly-docker-enterprise/reviews?page=6&qs=pros-and-cons&section=pricing&secure%5Bexpires_at%5D=2026-08-12+13%3A38%3A20+-0500&secure%5Bsession_id%5D=a46b0091-56c1-4297-8548-4c0fbb569abe&secure%5Btoken%5D=6bbff7b32c1e6b8d0c88db21b6a6787ed07bbb31f3386cc714acd9f5ab2adc23&format=llm_user)

## Mirantis Kubernetes Engine (formerly Docker Enterprise) Features
**Fleet & Lifecycle Management - Enterprise Kubernetes Management**
- Automated Cluster Provisioning & Onboarding
- Multi-Cluster Fleet Management
- Cluster Templates & Blueprints

**Management**
- Network Isolation

**Day-2 Operations & Reliability - Enterprise Kubernetes Management**
- Auto-Remediation for Nodes & Clusters
- Resource & Cost Visibility
- Backup & Restore for Cluster Resources

**Organization**
- Packaging 
- Container Networking
- Orchestration

**Identity & Access Management - Enterprise Kubernetes Management**
- Policy-Based Access Controls
- Enterprise SSO Integration
- Multi-Tenancy & Team Isolation
- Centralized RBAC Across Clusters

**Development**
- Developer Toolkit
- Architecture
- Datacenter
- Virtualization

**Governance, Policy & Compliance - Enterprise Kubernetes Management**
- Compliance Reporting & History
- Standards Guardrails for Cluster Config
- Audit Logging & Forensics

**App Delivery & Platform Integrations - Enterprise Kubernetes Management**
- CI/CD Toolchain Integrations
- GitOps-Based Config & Deployment

## Top Mirantis Kubernetes Engine (formerly Docker Enterprise) Alternatives
  - [Red Hat OpenShift](https://www.g2.com/products/red-hat-red-hat-openshift/reviews) - 4.5/5.0 (290 reviews)
  - [Amazon Elastic Container Service (Amazon ECS)](https://www.g2.com/products/amazon-elastic-container-service-amazon-ecs/reviews) - 4.3/5.0 (249 reviews)
  - [Google Kubernetes Engine (GKE)](https://www.g2.com/products/google-kubernetes-engine-gke/reviews) - 4.5/5.0 (216 reviews)

