mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2025-12-23 21:47:44 -05:00
* Improve Dev Container PHPStan was failing in Dev Container * Update Docker to Alpine Linux 3.18 * New DATA_PATH environment variable * README
45 lines
966 B
JSON
45 lines
966 B
JSON
// For format details, see https://aka.ms/devcontainer.json
|
|
{
|
|
"name": "FreshRSS-dev-Alpine",
|
|
"build": {
|
|
"dockerfile": "Dockerfile"
|
|
},
|
|
"containerEnv": {
|
|
"DATA_PATH": "/home/developer/freshrss-data"
|
|
},
|
|
"customizations": {
|
|
"codespaces": {
|
|
"openFiles": [
|
|
".devcontainer/README.md"
|
|
]
|
|
},
|
|
"vscode": {
|
|
"extensions": [
|
|
"bmewburn.vscode-intelephense-client",
|
|
"DavidAnson.vscode-markdownlint",
|
|
"dbaeumer.vscode-eslint",
|
|
"eamodio.gitlens",
|
|
"EditorConfig.EditorConfig",
|
|
"foxundermoon.shell-format",
|
|
"GitHub.vscode-pull-request-github",
|
|
"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"
|
|
}
|