aboutsummaryrefslogtreecommitdiff
path: root/.devcontainer/devcontainer.json
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2023-03-04 13:30:45 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2023-03-04 13:30:45 +0100
commitb3239256dc6d188cda970adab516b3fcf1b86129 (patch)
treed8e65dd9784834ba2e82ce7ee94b4718f8af19ea /.devcontainer/devcontainer.json
parent27b71ffa99f7dff013fb8d51d020ed628e0d2ce6 (diff)
parent0fe0ce894cbad09757d719dd4b400b9862c1a12a (diff)
Merge branch 'edge' into latest
Diffstat (limited to '.devcontainer/devcontainer.json')
-rw-r--r--.devcontainer/devcontainer.json35
1 files changed, 35 insertions, 0 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
new file mode 100644
index 000000000..a30fdf5c7
--- /dev/null
+++ b/.devcontainer/devcontainer.json
@@ -0,0 +1,35 @@
+// 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"
+}