[wp-trac] [WordPress Trac] #64654: Docker images in wordpress-develop do not support on Apple Silicon
WordPress Trac
noreply at wordpress.org
Tue Feb 17 05:01:03 UTC 2026
#64654: Docker images in wordpress-develop do not support on Apple Silicon
------------------------------+-----------------------------
Reporter: huzaifaalmesbah | Owner: (none)
Type: defect (bug) | Status: new
Priority: normal | Milestone: Awaiting Review
Component: Build/Test Tools | Version:
Severity: normal | Keywords:
Focuses: |
------------------------------+-----------------------------
On Apple Silicon (M1), running the WordPress core development environment
fails because the Docker images `wordpressdevelop/php:latest` and
`wordpressdevelop/cli:latest` do not provide linux/arm64 support.
== Environment ==
* MacBook Pro (13-inch, M1, 2020)
* Apple M1
* macOS 26.3 (25D125)
* Node.js 20.x
* npm 10.x
== Steps to Reproduce ==
{{{
npm install
npm run build:dev
npm run env:start
}}}
== Actual Result ==
Docker fails with:
{{{
no matching manifest for linux/arm64/v8 in the manifest list entries
}}}
Affected images:
* wordpressdevelop/php:latest
* wordpressdevelop/cli:latest
== Expected Result ==
The development environment should start successfully on Apple Silicon
without requiring manual platform overrides.
== Workaround ==
The environment starts only if `docker-compose.override.yml` includes
platform overrides for `php` and `cli` (similar to `mysql`):
{{{
services:
php:
platform: linux/amd64
cli:
platform: linux/amd64
mysql:
platform: linux/amd64
}}}
Without overriding `php` and `cli`, the environment does not start.
--
Ticket URL: <https://core.trac.wordpress.org/ticket/64654>
WordPress Trac <https://core.trac.wordpress.org/>
WordPress publishing platform
More information about the wp-trac
mailing list