From 8c73f41f2a5b092585372eaaf4efa6a7d25098f9 Mon Sep 17 00:00:00 2001 From: Jason Stiefel Date: Mon, 16 Sep 2019 19:32:03 -0400 Subject: [PATCH] Add port mapping for edge agent re: #24 Adds an optional port mapping to expose the edge agent port --- portainer/config.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/portainer/config.json b/portainer/config.json index 7e96f28..35bd929 100755 --- a/portainer/config.json +++ b/portainer/config.json @@ -21,10 +21,12 @@ "ssl" ], "ports": { - "80/tcp": null + "80/tcp": null, + "8000/tcp": null }, "ports_description": { - "80/tcp": "Web interface (Not required for Hass.io Ingress)" + "80/tcp": "Web interface (Not required for Hass.io Ingress)", + "8000/tcp": "Edge Agent Api (Enable when managing remote edge agents)" }, "boot": "auto", "hassio_api": true,