I am trying to setup set of docker containers to serve couple of applications. One of my goals is to isolate PHP applications from each other.
I am new to Docker. So only idea i came up with is to create a dedicated php-fpm container per-application.
I started with official image: php:7.0-fpm but now I think that I may need to create my own general purpose pfp-fpm container (based on mentioned above), add some programs to it (such as ImageMagick) and instantiate couple of such php-fpm+stuff containers per PHP-application, setting up volume pointing strictly to that application source code.
Can anyone help me with this query?
Thanks.