This image is based on the official WordPress image. It includes the ionCube Loader and increases the memory limit to use this image with the WordPress extension Memberium. In addition the maximum upload file size is increased to 128MB.
Currently the following tags can be used. The image builds on the WordPress image with the same tag.
php7.0-apache
php7.1-apache
The image can be used identically to the official WordPress image. You can take a look at their description or use a docker-compose.yml similar like this:
version: '3.1'
services:
wordpress:
image: plocek/wordpress-ioncube:php7.1-apache
restart: always
ports:
- 80:80
volumes:
- ./wp-content/:/var/www/html/wp-content
environment:
- WORDPRESS_DB_HOST=mariadb
- WORDPRESS_DB_PASSWORD: example
mariadb:
image: mariadb
restart: always
volumes: ./db-data:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: example