How we plan to use Docker in EasyEngine v4

This article is more of a proposal so feel free to comment and share your concerns and expertise.

Arguments like I hate docker; I will switch to something else; I like X don’t count. So please be constructive.

Package Management

The single biggest problem we are trying to solve with Docker is software package management.

Current implementation and problems

Currently, EasyEngine supports two distros – Ubuntu and Debian in limited ways. By limited, we mean that for Ubuntu we support LTS releases and for Debian – we support few latest versions.

At a bare minimum, we need Nginx, PHP, MariaDB, Redis, Postfix packages. Some users prefer Memcache over Redis.

We maintain our own Nginx build at https://build.opensuse.org/project/show/home:rtCamp:EasyEngine. It is outdated, and we are finding it hard to keep it updated. Testing different distros with every version is a very time-consuming task.

Then for some packages like PHP, we rely on different third parties for Ubuntu and Debian. We need to test for differences carefully. Otherwise, the same command might behave differently on Ubuntu and Debian.

The problems don’t end here. Many times hosting companies have their base images for Ubuntu/Debian which are different than DigitalOcean and Amazon AWS base setup. Many EasyEngine issues related to installation failure are related to differences in base images.

Also, there are some futuristic problems to deal. We want to use EasyEngine on Mac (most of our dev team uses Mac for WordPress development). Now we need to add more codes to deal with brew based packages! ?

Expectation from Docker

Our goal is to replace apt/brew/yum based packages with docker images and containers. This is what we want to achieve at a bare minimum.

We might keep everything in /var/www/ as it is. We want to replace running processes with Docker containers. If we manage to do this seamlessly, not only above problems will be solved, but EasyEngine will be usable on every platform where Docker containers can be run! This includes Mac, Windows and every distro of Linux of course.

The added advantages will be increased local development and production parity. It is a minimum requirement of a decent development workflow.

A pleasant side effect might be the viability of most demanded shared-hosting feature. The processes running in composer are run in isolation!

How are we planning to use Docker?

This is not going to be easy. There are many decisions to be made that will affect all of us.

The current idea is to use docker-compose to define a site’s stack. So EasyEngine site creation commands will generate a docker-compose.yml file based on parameters.

There are many docker-compose files on the Internet to run entire WordPress site. Here is one we are working on.

We have tested WordPress site creation using orchestration tools like Docker Swarm or Kubernetes, but there is no plan to put them in EasyEngine core.

We want to make EasyEngine core as small as possible and move all functionality to the EasyEngine command packages.

For now, if you are a docker expert, please have a look at this Github issue which is more like a checklist for what we think of as an acceptable Docker-based solution.

We understand that not everyone is Docker expert. We ourself are new to it! But if nothing else, please contribute test-cases to checklist as comments on the Github issue. ?

Link – Docker Checklist for EasyEngine v4 | Docker-Composer for WordPress

2 responses to “How we plan to use Docker in EasyEngine v4”

  1. Is it going to be possible to provide a (relatively painless, or perhaps well-documented) upgrade path from v3 to v4, or is it likely going to be better to reload? I am excited for EE Docker.