mirror of
git://develop.git.wordpress.org/
synced 2025-01-17 12:58:25 +01:00
804360948c
This bumps the version of Node.js used in GitHub Codespaces from 16 to 20. Follow up to [57212]. Props itschristiandale, huzaifaalmesbah. Fixes #60555. git-svn-id: https://develop.svn.wordpress.org/trunk@57667 602fd350-edb4-49c9-b593-d223f7449a82
26 lines
941 B
JSON
26 lines
941 B
JSON
// For format details, see https://aka.ms/devcontainer.json.
|
|
{
|
|
"name": "WordPress Core Development",
|
|
"dockerComposeFile": "docker-compose.yml",
|
|
"service": "app",
|
|
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
|
|
|
|
// Features to add to the dev container. More info: https://containers.dev/features.
|
|
"features": {
|
|
"ghcr.io/devcontainers/features/common-utils:2": {
|
|
"username": "wordpress"
|
|
},
|
|
"ghcr.io/devcontainers/features/node:1": {
|
|
"version": "20"
|
|
},
|
|
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
|
|
"ghcr.io/devcontainers/features/git:1": {}
|
|
},
|
|
"onCreateCommand": "sudo chmod +x .devcontainer/install-tools.sh && .devcontainer/install-tools.sh",
|
|
"postCreateCommand": "sudo chmod +x .devcontainer/setup.sh && .devcontainer/setup.sh",
|
|
"forwardPorts": [
|
|
8080
|
|
],
|
|
"remoteUser": "wordpress"
|
|
}
|