heidloff.net - Building is my Passion
Post
Cancel

Developer Perspective on Cloud Foundry vs Docker on Bluemix

IBM Bluemix supports different ways to package applications and to deploy and run them in the cloud (“compute options”). Developers can choose between Cloud Foundry and Docker. The two models have certainly similarities, for example they are both open and widely adopted, but there are also significant differences. Below I describe some of these differences as well as pros and cons from a consumer point of view.

Cloud Foundry – Open Source Platform as a Service

Cloud Foundry is a platform as a service (PaaS) which makes it really easy for developers to run their applications in the cloud without having to worry about any infrastructure. To push applications to the cloud, developers only push their (web) applications, everything else – from the hardware up to the application servers – is provided by the platform. In addition to hosting applications, Cloud Foundry vendors also provide services like databases, caches and messaging systems that developers can leverage, again without having to set up any infrastructure. Furthermore Cloud Foundry provides scalability of applications and auto-recovery, it provides logging dashboards and more administration functionality many developers don’t want to worry about.

These application management capabilities are a key concept and benefit of Cloud Foundry, but to be fair many vendors who provide hosting capabilities for Docker support this as well. For example IBM Containers provide monitoring dashboards for logs and CPU, memory and network usage as well as auto-recoverability and scalability of containers.

Docker – De facto Container Standard

Docker is a container technology to package full application stacks so that these containers can easily be run in different environments. This portability is achieved by packaging not only the core applications (your own code) but also the complete underlying stack you need to run applications including application servers, Java runtimes, configuration and other dependencies. Docker uses Linux as operating system and leverages concepts like Linux namespaces to run multiple applications in sandboxes. Containers are more portable since all you need are Linux Docker environments while for Cloud Foundry packaged applications you have more prerequisites, the Cloud Foundry runtimes and services.

Key Advantage of Cloud Foundry – Ease of Use

The advantage of Cloud Foundry when it comes to the packaging of applications is that it is very easy for developers to use. Developers can develop their applications in their local IDEs of choice, run and test them on local application servers and simply push the applications to the cloud. Cloud Foundry is smart enough to pick the right buildpack and via the Cloud Foundry buildpacks a lot of the configuration is done automatically (if not overwritten/disabled by developers explicitly). For example if a Java Liberty application uses a NoSQL service, the feature is enabled in the buildpack and the appropriate jar files are downloaded. The ease of use of the Cloud Foundry model is very valuable for rapid prototyping, simpler types of applications and developers who might have other non-development related responsibilities in their jobs.

Key Advantage of Docker – Portability

For more sophisticated applications though it’s often desirable to have more flexibility and configuration options. With Docker images you have basically the same benefits that virtual machines provide but Docker images are much more lightweight and easier to handle since they don’t include their own operating system. For example while not recommended you could also run more than one process per container, for example to access the container via SSH. These advanced capabilities of Docker however come at the expense of more work for developers.

Other Differences between Cloud Foundry and Docker

I think the key advantage of the Cloud Foundry model is ease of use and the key advantage of Docker is portability. Beyond this main difference there are more differences between Docker and the Cloud Foundry packaging model. To share state both containers and Cloud Foundry apps can use in memory caches, databases or object storage. With Docker you can additionally use persistent storage volumes (file systems) which might make deployments of existing apps to the cloud easier. Additionally Cloud Foundry supports a smaller number of opened ports for security reasons while Docker in general has no limitations (unless restricted by the cloud platform provider).

As mentioned above Cloud Foundry is more than the hosting of applications. Cloud Foundry vendors also provide services that can be used to build different types of applications. These services and user accounts are automatically provisioned when adding services to applications in order to make it as easy as possible for developers to use these services. While Docker doesn’t know these types of services out of the box, the IBM Containers in Bluemix allow Docker applications to leverage the same Cloud Foundry services.

Closing Thoughts

Both Cloud Foundry and Docker are open technologies. To my knowledge the de facto standard Docker will be evolved in the new Open Container Initiative to create open industry standards around containers. Both technologies have healthy and growing ecosystems. The amount of Docker images on DockerHub is outstanding and shows the momentum and popularity of Docker these days.

Personally I hope that these technologies will come even closer together so that developers can benefit from the best of both worlds. I’d also like to see better tooling support for Docker and easier and standard-based ways to orchestrate and link between multiple containers in one application.

Above I describe on a high level the differences of Cloud Foundry and Docker capabilities as they exist today from a developer point of view. If you want to learn more I recommend to read the following articles that describe Cloud Foundry’s own container technology and plans to run Docker on Cloud Foundry.
Cloud Foundry, Docker, OpenStack – Leading Open Source Triumvirate (video)
Docker on Diego, Cloud Foundry’s New Elastic Runtime
Docker Containers, Cloud Foundry, and Diego—Why Abstraction Matters

A big thank you goes to Ryan Baxter who provided great input for this article.

image

If you want to try out Cloud Foundry and Docker in Kubernetes, you can get an account on the IBM Cloud and try these computing options.

Featured Blog Posts
Disclaimer
The postings on this site are my own and don’t necessarily represent IBM’s positions, strategies or opinions.
Trending Tags