I need WordPress, MySQL, and PHP Zip Archiving enabled for a Docker project? What is the most recommended way in getting all 3 up?
I would recommend running WordPress and MySQL in separate containers (as seen in the example stack.yml on https://hub.docker.com/_/wordpress/), and if ZipArchive is required, you will need to build a new image FROM wordpress which installs the necessary extensions. See https://github.com/docker-library/wordpress/issues/213 (which you have also commented on) for more details/suggestions around that.
In the future, these sorts of questions/requests would be more appropriately posted to the Docker Community Forums, the Docker Community Slack, or Stack Overflow.
Many many thanks on the details and where to post this question as well. I know have these locations marked for future use on QnA.
Most helpful comment
I would recommend running WordPress and MySQL in separate containers (as seen in the example
stack.ymlon https://hub.docker.com/_/wordpress/), and if ZipArchive is required, you will need to build a new imageFROM wordpresswhich installs the necessary extensions. See https://github.com/docker-library/wordpress/issues/213 (which you have also commented on) for more details/suggestions around that.In the future, these sorts of questions/requests would be more appropriately posted to the Docker Community Forums, the Docker Community Slack, or Stack Overflow.