Homekit - ошибка

Пробую воспроизвести. Установлен докер, проверяю:

docker run hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
c1ec31eb5944: Pull complete 
Digest: sha256:a26bff933ddc26d5cdf7faa98b4ae1e3ec20c4985e6f87ac0973052224d24302
Status: Downloaded newer image for hello-world:latest

Hello from Docker!
This message shows that your installation appears to be working correctly.

To generate this message, Docker took the following steps:
 1. The Docker client contacted the Docker daemon.
 2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
    (amd64)
 3. The Docker daemon created a new container from that image which runs the
    executable that produces the output you are currently reading.
 4. The Docker daemon streamed that output to the Docker client, which sent it
    to your terminal.

To try something more ambitious, you can run an Ubuntu container with:
 $ docker run -it ubuntu bash

Share images, automate workflows, and more with a free Docker ID:
 https://hub.docker.com/

For more examples and ideas, visit:
 https://docs.docker.com/get-started/

Ну и ставлю:

docker pull nodered/node-red:3.1.0-18
3.1.0-18: Pulling from nodered/node-red
96526aa774ef: Pull complete 
3130715204cf: Pull complete 
b06de8ab1c4f: Pull complete 
90ef3ffc5156: Extracting [==================================================>]     448B/448B
b6a5c5e0d534: Download complete 
eb0750bc61fe: Download complete 
11623a76b03b: Download complete 
4f4fb700ef54: Download complete 
71f5f9804570: Download complete 
f75686d65cfe: Download complete 
6093e8477fc8: Download complete 
4a97ac1c1b69: Download complete 
991df60ddbf8: Download complete 
fc8c4f1a1678: Download complete 
c2e1a2802a47: Download complete 
90f27ac5ca03: Download complete 
a172c95dd9a2: Download complete 

запускаю

docker run -it -d -p 1880:1880 --name node-red 5fd5da871f28 --restart unless-stopped -it
a6e1aee22c11313c8fe278dfbc5de1564f6ca5ec648f659f21358d4aa584c687

Процесс

ps ax |grep nod
   2720 pts/0    Sl+    0:01 node-red
   2744 pts/0    S+     0:00 grep nod

Ну и ожидаемое:

wget 127.0.0.1:1880 -O -
--2024-05-08 15:23:59--  http://127.0.0.1:1880/
Connecting to 127.0.0.1:1880... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1670 (1.6K) [text/html]
Saving to: 'STDOUT'

-                                                                                       0%[                                                                                                                                                                                                                        ]       0  --.-KB/s               <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<!--
  Copyright OpenJS Foundation and other contributors, https://openjsf.org/

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
-->
<title>Node-RED</title>
<link rel="icon" type="image/png" href="favicon.ico">
<link rel="mask-icon" href="red&#x2F;images&#x2F;node-red-icon-black.svg" color="#8f0000">
<link rel="stylesheet" href="vendor/jquery/css/base/jquery-ui.min.css?v=">
<link rel="stylesheet" href="vendor/font-awesome/css/font-awesome.min.css?v=">
<link rel="stylesheet" href="red/style.min.css?v=">
<link rel="stylesheet" href="vendor/monaco/style.css?v=">
</head>
<body spellcheck="false">
<div id="red-ui-editor"></div>
<script src="vendor/vendor.js?v="></script>
<script src="vendor&#x2F;monaco&#x2F;monaco-bootstrap.js?v="></script>
<script src="red&#x2F;red.min.js?v="></script>
<script src="red&#x2F;main.min.js?v="></script>


</body>
</html>
-                                                                                     100%[=======================================================================================================================================================================================================================>]   1.63K  --.-KB/s    in 0s      

2024-05-08 15:23:59 (193 MB/s) - written to stdout [1670/1670]

root@test206:~#