xmpp.chapril.org-ejabberd/.devcontainer/devcontainer.json

49 lines
1.1 KiB
JSON
Raw Normal View History

2020-12-16 08:32:15 +01:00
{
"name": "ejabberd",
// "dockerComposeFile": "docker-compose.yml",
2021-04-13 10:24:01 +02:00
"build": {
"dockerfile": "Dockerfile",
"args": {
"VARIANT": "latest" // 1.11.4
2021-04-13 10:24:01 +02:00
}
},
2020-12-16 08:32:15 +01:00
"workspaceFolder": "/workspace",
// Set *default* container specific settings.json values on container create.
"settings": {
2021-05-11 10:06:16 +02:00
"terminal.integrated.defaultProfile.linux": "/bin/zsh",
2020-12-16 08:32:15 +01:00
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": ["pgourlain.erlang", "jakebecker.elixir-ls"],
2021-04-13 10:24:01 +02:00
// 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",
2020-12-16 08:32:15 +01:00
// Uncomment to connect as a non-root user. See https://aka.ms/vscode-remote/containers/non-root.
2021-05-11 11:00:44 +02:00
"remoteUser": "vscode",
"portsAttributes": {
"1883": {
"label": "MQTT"
},
"5222": {
"label": "XMPP C2S"
},
"5223": {
"label": "Legacy XMPP C2S"
},
"5269": {
"label": "XMPP S2S"
},
"5280": {
"label": "ejabberd HTTP"
},
"5443": {
"label": "ejabberd HTTPS"
}
}
2020-12-16 08:32:15 +01:00
}