In my last post about Docker, we saw the basics of setting up images and running containers. Now we are going to build on this with another tool from Docker known as Docker Compose. We will use Docker Compose to set up a WordPress project. If you want to check out the code you can go to the GitHub Repository and play around yourself. WordPress is one of the main technologies I use on a daily basis for work and I thought it would be a good way to dig deeper into Docker.
Docker Compose
Docker Compose is a tool for Docker that let’s you automatically orchestrate containers. In our first foray into docker we manually started and ran each container from the command line. This works great in a small setup or for testing something out, but as soon as you have many containers that all talk to each other and you want a quick way to setup and tear down your project Docker Compose is the way to go. Docker Compose makes use of a docker-compose.yml
file to organize the project. Here is our WP setup:
docker-compose.yml
version: '3.3'
services:
db:
image: mariadb:${MARIADB_VERSION:-10.2}
environment:
MYSQL_ROOT_PASSWORD: somewordpress
MYSQL_DATABASE: wordpress
MYSQL_USER: wordpress
MYSQL_PASSWORD: wordpress
volumes:
- db_data:/var/lib/mysql
restart: always
networks:
- back
wordpress:
depends_on:
- db
image: 'wordpress:${WP_VERSION:-5.6.1}-php${PHP_VERSION:-7.4}-apache'
ports:
- "8000:80"
restart: always
hostname: '${DOCKER_DEV_DOMAIN:-project.test}'
volumes:
- ./themes:/var/www/html/wp-content/themes:rw
- ./plugins:/var/www/html/wp-content/plugins:rw
- ./mu-plugins:/var/www/html/wp-content/mu-plugins:rw
networks:
- front
- back
environment:
VIRTUAL_HOST: '${DOCKER_DEV_DOMAIN:-project.test}'
WORDPRESS_DB_HOST: db:3306
WORDPRESS_DB_USER: wordpress
WORDPRESS_DB_PASSWORD: wordpress
WORDPRESS_DB_NAME: wordpress
proxy:
image: jwilder/nginx-proxy:alpine
restart: always
ports:
- '80:80'
networks:
front:
aliases:
- '${DOCKER_DEV_DOMAIN:-project.test}'
volumes:
- '/var/run/docker.sock:/tmp/docker.sock:ro'
networks:
front: {}
back: {}
volumes:
db_data: {}
To spin up the WordPress set up you can run docker in detached mode. You can then navigate to localhost, or project.test (if you added it to your hosts file). You will see a fully operational WordPress setup.
docker-compose up -d
At the very top of the docker-compose.yml
we see a version declaration. I am only familiar with Docker Compose 3, but there are more details on the differences on Docker’s website. The next area we see our declaration of services
. Each of these services is essentially going to be a Docker container. Within each service we see various properties assigned to each container.
Image
Each container has an image specified here we have 3, mariadb:10.2
, wordpress:5.6.1-php7.4-apache
, and jwilder/nginx-proxy:alpine
. These images all get pulled in from DockerHub, the official repository of Docker images. We have a db
container running MariaDB, a wordpress container running WordPress & Apache, and lastly an Nginx server setup as a reverse proxy.
Environment
In our WordPress and DB containers we see an environment property where we are setting up our database. In a production environment you would not want to use these values and instead use real passwords and usernames that are secure. For a local setup, this works just fine.
Networks
We also see a property for each of our containers called networks. These are used by Docker to allow containers to interface with each other. In this example we have two simple networks, front and back. In our docker-compose.yml
towards the bottom you will see this code:
networks:
front: {}
back: {}
This sets up the two Docker networks that our containers will communicate on. You can see that the db
container only is on the back
network and not the front. This is because we want the database to be on a network with other backend services. The wordpress
container is on both the front
and back
network so that it can talk to the database, as well as talk to the Nginx reverse proxy. Lastly we see the Nginx proxy runs on the front with an alias set to whatever our domain for the project will be, making it so that this network is accessible by that domain name. By default this is set to project.test, as long as your hosts file points to localhost, you will be able to use that domain to access WordPress. Pretty neat.
Depends On
We have the wordpress
container setup to depend on the db
container. This means that the WordPress setup will not fully run until we have set up and have a running db
container. This makes sense as WordPress cannot work without the SQL db backing it. depends_on
allows us to have complex orchestration of containers and as more services get added there may be more dependencies that are needed.
Restart
If a container crashes, what should happen. This is the goal of the restart
property which tells Docker what to do when a given container crashes. In this case all three containers are set to always
restart.
Volumes
The volumes
property is one of the most important. We will look at two different types of mounts. First we bind our local file system to the wordpress
container filesystem for the themes
, plugins
, and mu-plugins
directories:
volumes:
- ./themes:/var/www/html/wp-content/themes:rw
- ./plugins:/var/www/html/wp-content/plugins:rw
- ./mu-plugins:/var/www/html/wp-content/mu-plugins:rw
The first part of volume binding is where we want to locally bind the folder, here it is the current directory themes folder. The next part of the binding is the folder on the actual container’s filesystem. In this case WordPress is installed at /var/www/html
, making the themes folder available at /var/www/html/wp-content/themes
. The last part of the binding is what type of settings are set for this binding. In this case each of the volumes for the wordpress
container are set to Read Write. Allowing us to read and write to the files on our host machine’s filesystem.
Another type of volume we see is just a regular volume mount. Volumes are what Docker uses to persist data. In this case we are using a volume for our database, so that when we stop our containers and restart them the WordPress database will be what it was. Volumes unlike bind mounts are easier to share between containers and are great when you do not need to locally edit the files but still need persistence. Let’s look at two parts of our docker-compose.yml
to see how to specify a volume.
volumes:
- db_data:/var/lib/mysql
volumes:
db_data: {}
The first property is a property on the db
container. It is a volume named db_data
being bound to the /var/lib/mysql
folder on the db
container’s filesystem. This is where MariaDB stores the database so we are essentially creating a volume to store all of our db data for the project.
The second volumes
property is at the top level of the file and is simply declaring that there is a volume and its name is db_data
the {}
signifies we are just using the default properties for the volume.
Wrapping Up
I really like how quickly you can set up projects with Docker and how each part of the project can be quickly spun up and down without ever having to install anything on the host machine. If you want to run some PHP code you could spin up a Docker container with an image of PHP installed allowing you to run the code. Then when you are done simply stop and remove the container and nothing was installed directly to the host machine. With Docker Compose you can set up complex projects with different services set inside of containers that can all communicate with one another. Managing this locally can be cumbersome. Managing this with Docker Compose is a breeze. Next I am going to be digging deeper into Docker, and how to use it for actual production deployments instead of just as a local development tool.