mirror of
https://github.com/supabase/supabase.git
synced 2026-05-08 07:50:20 +08:00
* chore: upgrade Realtime image to v2.0.2 * chore: update realtime hostname Co-authored-by: Qiao Han <qiao@supabase.io>
28 lines
612 B
YAML
28 lines
612 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:
|
|
# Always use a fresh database when developing
|
|
- /var/lib/postgresql/data
|
|
# Seed data should be inserted last (alphabetical order)
|
|
- ./dev/data.sql:/docker-entrypoint-initdb.d/seed.sql
|
|
storage:
|
|
volumes:
|
|
- /var/lib/storage
|