aboutsummaryrefslogtreecommitdiff
path: root/.devcontainer/devcontainer.json
blob: a30fdf5c7727582fbad79b08c0634795b2c50f32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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"
}