From 5d0c0eb03d8595d5a48ab4e6298a3b0c0e5b837e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20R=C3=A9mond?= Date: Tue, 11 May 2021 09:00:44 +0000 Subject: [PATCH] Expose port label --- .devcontainer/devcontainer.json | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) 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" + } + } }