aboutsummaryrefslogtreecommitdiff
path: root/.devcontainer/devcontainer.json
blob: ce4845faf08e24253115395a71c383fb3aa7fb60 (plain) (blame)
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
{
	"name": "ejabberd",
	// "dockerComposeFile": "docker-compose.yml",
	"build": {
		"dockerfile": "Dockerfile",
		"args": {
			"VARIANT": "1.11"
		}	
	},
	"workspaceFolder": "/workspace",

	// Set *default* container specific settings.json values on container create.
	"settings": {
		"terminal.integrated.defaultProfile.linux": "/bin/zsh",
	},

	// Add the IDs of extensions you want installed when the container is created.
	"extensions": [],

	// Use 'forwardPorts' to make a list of ports inside the container available locally.
	"forwardPorts": [5222, 5280, 5269],

	// Use 'postCreateCommand' to run commands after the container is created.
	// "postCreateCommand": "sh .devcontainer/post-create.sh",

	// Uncomment to connect as a non-root user. See https://aka.ms/vscode-remote/containers/non-root.
	"remoteUser": "vscode"
}