wordpress
wordpress copied to clipboard
Docker Official Image packaging for WordPress
The Unit configuration I've included here is based on the example provided by the Unit documentation (https://unit.nginx.org/howto/wordpress/), although I did spend time understanding it before blindly trusting it. 😄 The...
On a fresh install of provided fpm-alpine php 8.2, visiting the site says ``` Your PHP installation appears to be missing the MySQL extension which is required by WordPress. php...
I'm using a docker-compose setup consisting of a `mysql:8.0`, a `wordpress:6` and a `wordpress:cli` container. Wordpress itself works fine, but the CLI failed to connect to the server saying: `Failed...
The latest versions of the WordPress docker image is based on php 8.2 which in turn is based on the Debian 12 image, up from Debian 11. We want to...
Hello everyone, I wondered what the reasoning behind the argument check in [the docker-entrypoint script](https://github.com/docker-library/wordpress/blob/master/docker-entrypoint.sh#L4) for the apache and fpm images is: ``` ... if [[ "$1" == apache2* ]]...
The contents of `/usr/src/wordpress/.htaccess` in `wordpress:latest` (`6.1.1-php8.0-apache` as of writing this) are the following: ``` $ docker run -ti --entrypoint '' wordpress:latest cat /usr/src/wordpress/.htaccess # BEGIN WordPress RewriteEngine On RewriteRule...
Following this solution https://github.com/docker-library/wordpress/issues/221#issuecomment-356457710 for changing wordpress to a subfolder, if I run the container with default user (root) everything works fine but if I set the user to anything...
As per the issue @febsn brought up in https://github.com/docker-library/wordpress/issues/862, wp-cli will fail when using MySQL 8 without the `mariadb-connector-c` extension. The error message presented is the following: ```Warning: Failed to...
I added the --touch flag as targetTarArgs to prevent the "Cannot utime: Operation not supported" error message from appearing, especially when some storage types (e.g. Azure FileShare) are used on...
See: - docker-library/official-images#16044 - - - - `SOURCE_DATE_EPOCH` is added. The value is consumed by the build scripts to make the binary reproducible. - For Debian, `/var/log/*` is removed as...