diff --git a/docs/content/platform/getting-started.md b/docs/content/platform/getting-started.md index 33f8ef6674..c66d922f0f 100644 --- a/docs/content/platform/getting-started.md +++ b/docs/content/platform/getting-started.md @@ -57,6 +57,28 @@ docker compose -v Once you have Docker and Docker Compose installed, you can proceed to the next step. +
+ + Raspberry Pi 5 Specific Notes + + On Raspberry Pi 5 with Raspberry Pi OS, the default 16K page size will cause issues with the supabase-vector container (expected: 4K). +
+ To fix this, edit /boot/firmware/config.txt and add: +
+ ```ini + kernel=kernel8.img + ``` + Then reboot. You can check your page size with: +
+ ```bash + getconf PAGESIZE + ``` + 16384 means 16K (incorrect), and 4096 means 4K (correct). + After adjusting, docker compose up -d --build should work normally. +
+ See supabase/supabase #33816 for additional context. +
+ ## Setup ### Cloning the Repository