admin管理员组

文章数量:1399195

I’m trying to run wp-env in a GitLab CI pipeline using Docker, but I’m running into an issue where WP-CLI blocks execution because it’s running as root.

Here is my current .gitlab-ci.yml config:

image: docker:24.0.7

services:
  - docker:24.0.7-dind

variables:
  DOCKER_HOST: tcp://docker:2375
  DOCKER_TLS_CERTDIR: ""

before_script:
  - apk add --no-cache nodejs npm git
  - npm install -g @wordpress/env

stages:
  - test

wp_env_test:
  stage: test
  script:
    - wp-env start

本文标签: wordpresswpenv fails in GitLab CI with “YIKES It looks like you’re running this as root”Stack Overflow