skip to Main Content

How to update WordPress & PHP when they are installed by Docker

Docker image I have installed WordPress with Docker guided by this tutorial: https://www.digitalocean.com/community/tutorials/how-to-install-wordpress-with-docker-compose The tutorial is using this docker-compose.yml file that is using wordpress:5.1.1-fpm-alpine image: version: '3' services: db: image: mysql:8.0 container_name: db ... wordpress: depends_on: - db image: wordpress:5.1.1-fpm-alpine…

VIEW QUESTION
Back To Top
Search