58 lines
2.2 KiB
JSON
58 lines
2.2 KiB
JSON
|
// For format details, https://containers.dev/implementors/json_reference/.
|
||
|
{
|
||
|
"name": "WordPress Development Environment",
|
||
|
"dockerComposeFile": "../docker-compose.yml",
|
||
|
"service": "app",
|
||
|
"mounts": ["source=dind-var-lib-docker,target=/var/lib/docker,type=volume"],
|
||
|
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
|
||
|
|
||
|
"customizations": {
|
||
|
"vscode": {
|
||
|
// Set *default* container specific settings.json values on container create.
|
||
|
"settings": {},
|
||
|
|
||
|
// Add the IDs of extensions you want installed when the container is created.
|
||
|
"extensions": ["ms-azuretools.vscode-docker"]
|
||
|
}
|
||
|
},
|
||
|
|
||
|
// Features to add to the dev container. More info: https://containers.dev/features.
|
||
|
"features": {
|
||
|
"./local-features/welcome-message": "latest"
|
||
|
},
|
||
|
|
||
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
||
|
"forwardPorts": [8080, 8081, 8026, 3306],
|
||
|
|
||
|
// Maps a port number, "host:port" value, range, or regular expression to a set of default options. See port attributes for available options
|
||
|
"portsAttributes": {
|
||
|
"8080": {
|
||
|
"label": "WordPress Development/Testing Site"
|
||
|
},
|
||
|
"8081": {
|
||
|
"label": "phpMyAdmin"
|
||
|
},
|
||
|
"8026": {
|
||
|
"label": "MailHog"
|
||
|
},
|
||
|
"3306": {
|
||
|
"label": "MariaDB"
|
||
|
}
|
||
|
},
|
||
|
|
||
|
// Use `onCreateCommand` to run commands as part of the container creation.
|
||
|
//"onCreateCommand": "chmod +x .devcontainer/install.sh && .devcontainer/install.sh",
|
||
|
|
||
|
// Use 'postCreateCommand' to run commands after the container is created.
|
||
|
"postCreateCommand": "chmod +x .devcontainer/setup.sh && .devcontainer/setup.sh",
|
||
|
|
||
|
// Use 'postStartCommand' to run commands after the container has started.
|
||
|
"postStartCommand": "chmod +x .devcontainer/activate.sh && .devcontainer/activate.sh",
|
||
|
|
||
|
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
|
||
|
"remoteUser": "wp_php",
|
||
|
|
||
|
// A set of name-value pairs that sets or overrides environment variables for the devcontainer.json supporting service / tool (or sub-processes like terminals) but not the container as a whole.
|
||
|
"remoteEnv": { "LOCAL_WORKSPACE_FOLDER": "${localWorkspaceFolder}" }
|
||
|
}
|