Setting up WordPress on a Raspberry Pi with Docker Compose
Installation I haven’t set up a new WordPress instance for quite some time. But lately I wanted to run WordPress on a Rasperry Pi. I used a docker compose file to run all services is one shot with WordPress Mariadb and phpmyadmin. Unfortunately the official mariadb image does not support ARM which is needed by the Raspberry Pi, so Im using jsurf/rpi-mariadb instead. Here is the docker-compose.yml file: version: ‘3.6’ services: wordpress: image: wordpress:5.7.2 ports: Read more






