From 1407c91e154e3aa5578dd05ce56be36381a6c447 Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Mon, 6 Oct 2025 14:05:25 +0200 Subject: [PATCH] Update Docker image reference for Matter server container image Fixes: #1256 --- docs/docker.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docker.md b/docs/docker.md index 73bc51f9..77b3d573 100644 --- a/docs/docker.md +++ b/docs/docker.md @@ -33,7 +33,7 @@ docker run -d \ --security-opt apparmor=unconfined \ -v $(pwd)/data:/data \ --network=host \ - ghcr.io/home-assistant-libs/python-matter-server:stable + ghcr.io/matter-js/python-matter-server:stable ``` > [!NOTE] @@ -49,7 +49,7 @@ docker run -d \ -v $(pwd)/data:/data \ -v /run/dbus:/run/dbus:ro \ --network=host \ - ghcr.io/home-assistant-libs/python-matter-server:stable --storage-path /data --paa-root-cert-dir /data/credentials --bluetooth-adapter 0 + ghcr.io/matter-js/python-matter-server:stable --storage-path /data --paa-root-cert-dir /data/credentials --bluetooth-adapter 0 ``` ## Running using Docker compose @@ -58,7 +58,7 @@ docker run -d \ services: # python-matter-server matter-server: - image: ghcr.io/home-assistant-libs/python-matter-server:stable + image: ghcr.io/matter-js/python-matter-server:stable container_name: matter-server restart: unless-stopped # Required for mDNS to work correctly