Make WordPress Core

Changes between Version 1 and Version 2 of Ticket #59930, comment 10


Ignore:
Timestamp:
12/20/2023 09:05:51 PM (23 months ago)
Author:
afragen
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #59930, comment 10

    v1 v2  
    55services:
    66  mysql:
    7     platform: linux/amd64
     7    image: ${LOCAL_DB_TYPE-mysql}:8.0
     8    platform: linux/arm64
    89  php:
    910    platform: linux/amd64
     
    1415      - ../custom-php-config.ini:/usr/local/etc/php/conf.d/php-config.ini
    1516      - ./:/var/www
    16   wordpress-develop:
    17     platform: linux/amd64
    1817}}}
    1918
    2019I still have some issues with getting xDebug to stop at breakpoints, but on an Apple Silicon Mac it loads and works with the following commands.
    2120
    22 `npm install && npm run build:dev && npm run env:start && sleep 2 && npm run env:install`
    23 
    24 The `sleep` is there as it can take mysql a second or 2 to load and this way I don't have to re-run `env:install` again.
     21`npm install && npm run build:dev && npm run env:start && npm run env:install`