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
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744137230a4560115.html
评论列表(0条)