Files
FreshRSS/.devcontainer/devcontainer.json
Alexandre Alapetite c170c390b7 Dev Container extensions syntax update (#5145)
The JSON syntax has changed for specifying extensions
https://aka.ms/devcontainer.json
2023-02-27 10:08:16 +01:00

36 lines
779 B
JSON

// For format details, see https://aka.ms/devcontainer.json
{
"name": "FreshRSS-dev-Alpine",
"build": {
"dockerfile": "Dockerfile"
},
"customizations": {
"vscode": {
"extensions": [
"bmewburn.vscode-intelephense-client",
"DavidAnson.vscode-markdownlint",
"dbaeumer.vscode-eslint",
"eamodio.gitlens",
"EditorConfig.EditorConfig",
"foxundermoon.shell-format",
"mrmlnc.vscode-apache",
"ms-azuretools.vscode-docker",
"redhat.vscode-yaml",
"timonwong.shellcheck",
"ValeryanM.vscode-phpsab"
]
}
},
"forwardPorts": [
8080
],
"portsAttributes": {
"8080": {
"label": "FreshRSS Apache",
"onAutoForward": "notify"
}
},
"remoteUser": "developer",
"postCreateCommand": "sudo .devcontainer/postCreateCommand.sh"
}