mirror of
https://github.com/supabase/supabase.git
synced 2026-05-08 07:50:20 +08:00
* using slack clone to test * updates auth functions to handle new GUC commands * move postgREST to new version * testing with todo list * makeing our mount setup far more robust * Adds some usage commands * cleans up the auth functions * test with todos app * fix env var for GUC * new auth functions - changed for performance improvement * Adds some integration tests for RLS * anon volume on postgres * remove unused helpers * fix broken docusaurus build * Fix complaining vercel * test instructions * Use named imports * Fixes imports * all relative * chore: add in tsconfig.json to /web * finding these all over the place * Update docker/docker-compose.yml Co-authored-by: Steve Chavez <stevechavezast@gmail.com> Co-authored-by: Jonathan Summers-Muir <MildTomato@users.noreply.github.com> Co-authored-by: Steve Chavez <stevechavezast@gmail.com>
15 lines
326 B
YAML
15 lines
326 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
mail:
|
|
container_name: supabase-mail
|
|
image: phamhieu/inbucket:latest
|
|
ports:
|
|
- '2500:2500' # SMTP
|
|
- '9000:9000' # web interface
|
|
- '1100:1100' # POP3
|
|
db:
|
|
volumes:
|
|
- type: bind
|
|
source: ./dev/data.sql
|
|
target: /docker-entrypoint-initdb.d/data.sql |