I need to deploy many instances of the same LAMP (or LEMP) application :
Application requires :
Nginx
, MariaDB
, PHPFPM
)composer
, bower
, ...)After reading Docker documentation and many howtos, I see different solutions to dockerize this web application :
All the stack is in one container :
mysql
and webapp data filesExamples :
Tutum
provides an all-in-one container for Wordpress Application : https://github.com/tutumcloud/tutum-docker-wordpress Phusion
, which provides base image optimized for Docker, precises in documentation (https://github.com/phusion/baseimage-docker#docker_single_process) :
Docker runs fine with multiple processes in a container. In fact, there is no technical reason why you should limit yourself to one process
Pros (IMHO) :
Cons (IMHO):
For each webapp to deploy, a containers stack is deployed :
Nginx
, Mysql
, PHP-FPM
,composer
, bower
,...) can be also dockerized, or merged in the phpfpm containerExamples :
Gaudi
provides an example with a LEMP architecture based on 3 “daemon” containers (nginx, mysql, phpfpm), and 2 app containers (composer, bower) (http://marmelab.com/blog/2014/06/04/demo-symfony-with-docker-and-gaudi.html)Pro (IMHO) :
Cons (IMHO) :
I'm more Dev than Ops, also it's confused for me.
So, Questions :
It's ok to have multiple processes, but to get the most benefit out of Docker, avoid one container being responsible for multiple aspects of your overall application. You can connect multiple containers using user-defined networks and shared volumes.
I recently went through analysis on Docker for this type of setup. I know there are some who view Docker as a sort of MicroVM, but my take is the Docker philosophy leans more toward single process per container. This tracks well with the Single Responsibility principle in programming. The more a Docker container does, the less reusable and more difficult to manage. I posted all my thoughts here:
http://software.danielwatrous.com/a-review-of-docker/
I then went on to build a LEMP stack using Docker. I didn't find a lot of value in splitting the PHP and Nginx processes into separate Docker containers, but the Web and Database functions are in separate containers. I also show how to manage linking and volume sharing to avoid running SSH daemons in your containers. You can follow what I did here as a point of reference.
http://software.danielwatrous.com/use-docker-to-build-a-lemp-stack-buildfile/
To your point about increased complexity for the single function per container, you are correct. It will look and feel just like you had distinct, distributed tiers. Very large applications have done this for years and it does increase complexity when it comes to communication, security and management. Of course it brings a number of benefits as well.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With