Skip to content

Releases: visiblevc/wordpress-starter

0.20.0

25 May 16:37
Compare
Choose a tag to compare

Minor

  • Add support for Redis object caching. (#139)
  • Allow user to specify a different database charset via environment variable (#137)

Credit

Huge thanks to @signaleleven for the contribution

0.19.0

16 May 02:51
Compare
Choose a tag to compare

BREAKING CHANGE: The WordPress service must now be configured in one of the following ways:

(preferred)

services:
    wordpress:
        cap_add:
            - SYS_ADMIN
        devices:
            - /dev/fuse

OR

(try to avoid if possible)

services:
    wordpress:
        privileged: true

This configuration allows the wordpress container to mount the WordPress directory to the web root with back and forth syncronization using bindfs. This configuration ensures that when editing the files/folders manually on your system, they have the proper admin permissions in the /app directory, and when the server edits files/folders from WordPress, the webroot always have the proper www-data permissions in the web root.

0.18.0

14 Apr 20:59
7227bc5
Compare
Choose a tag to compare

BREAKING CHANGE: URL_REPLACE environment variable now only accepts after_url, rather than before_url,after_url. This will gracefully fix itself if it encounters the old format for this version only, but will break on subsequent versions.

Minor

  • Create and use a non-root user (admin) with passwordless sudo priviledges, rather than using the root user.
  • Plugins and themes can now be space-separated (preferred) or comma-separated (legacy).
  • Readdress #110 to print out logs in a similar, but greatly simplified, format.
  • Install and remove themes and plugins in parallel.
  • Greatly simplify build pipeline.

0.17.0

05 Dec 02:20
Compare
Choose a tag to compare

Minor

  • Add PHP 7.2 (latest, latest-php7.2, 0.17.0-php7.2)
  • Add DB_USER config option to environment variables

0.16.0

24 Sep 15:33
Compare
Choose a tag to compare

Major

  • BREAKING CHANGE: Builds will now exit if any plugin or theme installs fail.

Minor

  • Improve logging.

Credits

Thanks @carpnick for your contribution!

0.15.2

01 Jun 15:55
Compare
Choose a tag to compare

Fixes

  • REALLY fix error causing volumed plugins and/or themes to be deleted.
  • Move .dockercache out of index directory so it can't be accessed directly.

0.15.1

24 May 15:36
Compare
Choose a tag to compare

Fixes

  • Fix error causing volumed plugins to be deleted.
  • Always flush .htaccess to add rewrite rules back in the event a plugin modified it (e.g. w3-total-cache).

Other

  • Add wp-cli bash completions to the wordpress container.

0.15.0

23 May 16:15
Compare
Choose a tag to compare

Deprecations

Note: Both deprecations will still work as usual until the next release cycle.

[local]plugin-name & [local]theme-name syntax

The build process is now aware of locally-volumed plugins and themes automatically.

Additionally, listing locally-volumed plugins and themes in your docker-compose.yml file is optional; you may list them if you'd like to keep your compose file declarative, or you may skip listing them completely. The build will complete the same either way.

SEARCH_REPLACE has been renamed to URL_REPLACE

We chose to rename this because, although you may search and replace strings that are not URLs, the build process requires them to be.

This name reflects that requirement better and will lead to less confusion down the road.

VERBOSE environement variable

Logging has been changed to show necessary information by default.

Improvements

  • Add php7.1 base image.
  • Widespread efficiency improvements to build process.
  • Reduce the number of Dockerfile layers.
  • If SERVER_NAME is specified (eg. example.com), create a ServerAlias in the apache configs for www.example.com.

Fixes

  • Plugins and themes are only pruned if they meet the following criteria (Closes #51):
    • Not listed in docker-compose.yml.
    • Not added as a local volume.
  • Adjust permissions of volumed files and directories so that they remain editable outside the container, and remain secure. (Closes #12)
  • Fix critical security vulnerability. HT @joerybruijntjes.

0.14.0

28 Jan 18:23
Compare
Choose a tag to compare
  • Add SERVER_NAME variable to allow for quickly setting that directive in the apache config for users interested in running in production.

Updated tags

  • php7.0: latest, latest-php7.0, 0.14.0-php7.0
  • php5.6: latest-php5.6, 0.14.0-php5.6

0.13.0

18 Jan 21:21
Compare
Choose a tag to compare

Add certbot into the image to allow for easily obtaining and renewing SSL certificates

Updated tags

  • php7.0: latest, latest-php7.0, 0.13.0-php7.0
  • php5.6: latest-php5.6, 0.13.0-php5.6