Combining PHP-fpm with nginx in one dockerfile
问题 I have a need to combine the php-fpm with nginx in one dockerfile for production deployment. So is it better to : (1) Start the dockerfile using php:7.1.8-fpm and then install nginx image layer on top of it ? (2) Or do you recommend using nginx image and then installing php-fpm using apt-get ? PS: I do not have a docker-compose build option for production deployment. On my development environment, I already use docker-compose and build multi-container app easily from two images. Our