diff options
author | Mickaël Rémond <mremond@process-one.net> | 2021-05-11 09:00:44 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-11 09:00:44 +0000 |
commit | 5d0c0eb03d8595d5a48ab4e6298a3b0c0e5b837e (patch) | |
tree | 8501b320abda8b7f29baa7be785280dbd1b22aec /.devcontainer | |
parent | Ignore basic Mnesia directory (diff) |
Expose port label
Diffstat (limited to '.devcontainer')
-rw-r--r-- | .devcontainer/devcontainer.json | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 46ed982d0..b548ea44d 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -24,5 +24,25 @@ // "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" + "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" + } + } } |