From 48ef2984e511100384dcae051d0ded2bf9b50ad7 Mon Sep 17 00:00:00 2001 From: Ludovic Ortega Date: Wed, 3 Dec 2025 14:39:03 +0100 Subject: [PATCH] docs: fix chown command for windows users (#2192) Signed-off-by: Ludovic Ortega --- docs/migration-guide.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/migration-guide.mdx b/docs/migration-guide.mdx index caefaf446..67c76370c 100644 --- a/docs/migration-guide.mdx +++ b/docs/migration-guide.mdx @@ -28,7 +28,7 @@ Changes : If you're migrating from a previous installation, you may need to update the ownership of your config folder: ```bash -sudo chown -R 1000:1000 /path/to/appdata/config +docker run --rm -v /path/to/appdata/config:/data alpine chown -R 1000:1000 /data ``` This ensures the `node` user (UID 1000) owns the config directory and can read and write to it.