mirror of
https://github.com/supabase/supabase.git
synced 2026-05-08 07:50:20 +08:00
* chore: remove outdated migration files * chore: update docker compose to use latest images * chore: remove commented lines * chore: update default role passwords * chore: add no restart flag in dev * chore: update example env * chore: add comments * chore: bump storage and studio images * chore: default pgmeta to use admin role * chore: do not update su role
26 lines
527 B
YAML
26 lines
527 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
mail:
|
|
container_name: supabase-mail
|
|
image: inbucket/inbucket:3.0.3
|
|
ports:
|
|
- '2500:2500' # SMTP
|
|
- '9000:9000' # web interface
|
|
- '1100:1100' # POP3
|
|
auth:
|
|
environment:
|
|
- GOTRUE_SMTP_USER=
|
|
- GOTRUE_SMTP_PASS=
|
|
meta:
|
|
ports:
|
|
- 5555:8080
|
|
db:
|
|
restart: 'no'
|
|
volumes:
|
|
# Seed data should be inserted last (alphabetical order)
|
|
- ./dev/data.sql:/docker-entrypoint-initdb.d/seed.sql
|
|
storage:
|
|
volumes:
|
|
- /var/lib/storage
|