Skip to content

Commit c31abc3

Browse files
Minor changes for PR 205
1 parent 6b965d0 commit c31abc3

File tree

2 files changed

+16
-14
lines changed

2 files changed

+16
-14
lines changed
22.6 KB
Loading

docs/services/supabase.md

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,13 @@ You can find your anonymous key in the **Environment Variables** area under **SE
1919

2020
## Public Port Access
2121

22-
> NOTE: This is a bug and should be fixed soon.
22+
::: warning NOTE:
23+
There is a bug with making database publicly accessible. This bug will be fixed soon. In the meantime, you can use the following workaround:
24+
:::
2325

2426
Set **Supabase Db** to public
2527

26-
![CleanShot 2025-03-06 at 07 16 50@2x](https://github.com/user-attachments/assets/70f2dc52-2590-481d-a226-ba7ee3a4ba12)
28+
<ZoomableImage src="/docs/images/services/supabase-db-fix.webp" />
2729

2830
Then
2931

@@ -35,18 +37,18 @@ Then add this line
3537

3638
To
3739
```yaml
38-
supabase-db:
39-
image: 'supabase/postgres:15.6.1.146'
40-
healthcheck:
41-
test: 'pg_isready -U postgres -h 127.0.0.1'
42-
interval: 5s
43-
timeout: 5s
44-
retries: 10
45-
depends_on:
46-
supabase-vector:
47-
condition: service_healthy
48-
ports:
49-
- ${POSTGRES_PORT:-5432}:${POSTGRES_PORT:-5432}
40+
supabase-db:
41+
image: 'supabase/postgres:15.6.1.146'
42+
healthcheck:
43+
test: 'pg_isready -U postgres -h 127.0.0.1'
44+
interval: 5s
45+
timeout: 5s
46+
retries: 10
47+
depends_on:
48+
supabase-vector:
49+
condition: service_healthy
50+
ports:
51+
- ${POSTGRES_PORT:-5432}:${POSTGRES_PORT:-5432}
5052
```
5153
5254
And Restart

0 commit comments

Comments
 (0)