Skip to content

sebastian13/docker-wordpress-ioncube

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

What's included in this image?

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.

Supported tags

Currently the following tags can be used. The image builds on the WordPress image with the same tag.

  • php7.0-apache
  • php7.1-apache

How to use this image

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published