mirror of
https://github.com/processone/ejabberd.git
synced 2024-10-31 15:21:38 +01:00
2698024b82
This is the only image available for now
49 lines
1.1 KiB
JSON
49 lines
1.1 KiB
JSON
{
|
|
"name": "ejabberd",
|
|
// "dockerComposeFile": "docker-compose.yml",
|
|
"build": {
|
|
"dockerfile": "Dockerfile",
|
|
"args": {
|
|
"VARIANT": "latest" // 1.11.4
|
|
}
|
|
},
|
|
"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": ["pgourlain.erlang", "jakebecker.elixir-ls"],
|
|
|
|
// 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",
|
|
"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"
|
|
}
|
|
}
|
|
}
|