From c6a1ec96f4c866c867bebd525618b00a1926d5c7 Mon Sep 17 00:00:00 2001 From: Simone Chemelli <simone.chemelli@gmail.com> Date: Wed, 24 Jan 2024 19:00:57 +0100 Subject: [PATCH] Add Shelly CoAP port to default container port (#108016) * Add Shelly CoAP port to default container port * Update devcontainer.json --- .devcontainer/devcontainer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 44a81718e10..553f3bbdf0e 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -5,7 +5,8 @@ "postCreateCommand": "script/setup", "postStartCommand": "script/bootstrap", "containerEnv": { "DEVCONTAINER": "1" }, - "appPort": ["8123:8123"], + // Port 5683 udp is used by Shelly integration + "appPort": ["8123:8123", "5683:5683/udp"], "runArgs": ["-e", "GIT_EDITOR=code --wait"], "customizations": { "vscode": { -- GitLab