From b69e0409ef7c770a5975387cc055b7c9781b9a80 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Tue, 20 Oct 2020 10:42:54 +0200 Subject: [PATCH] Show internal network settings on info (#694) --- docs/api/supervisor/endpoints.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/api/supervisor/endpoints.md b/docs/api/supervisor/endpoints.md index 767094e5..7037d667 100644 --- a/docs/api/supervisor/endpoints.md +++ b/docs/api/supervisor/endpoints.md @@ -1584,6 +1584,7 @@ Get network information. | key | description | | ---------- | ---------------------------------------------------------------------- | | interfaces | A dictionary of [Network interface models](api/supervisor/models.md#network-interface) | +| docker | Information about the internal docker network | **Example response:** @@ -1600,6 +1601,12 @@ Get network information. "method": "static", "primary": true } + }, + "docker": { + "interface": "hassio", + "address": "172.30.32.0/23", + "gateway": "172.30.32.1", + "dns": "172.30.32.3" } } ```