mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-04 21:04:37 +08:00
25 lines
442 B
YAML
25 lines
442 B
YAML
services:
|
|
db:
|
|
image: postgres:latest
|
|
environment:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: password
|
|
POSTGRES_DB: stackframe
|
|
ports:
|
|
- 5432:5432
|
|
volumes:
|
|
- postgres-data:/var/lib/postgresql/data
|
|
inbucket:
|
|
image: inbucket/inbucket:latest
|
|
ports:
|
|
- 2500:2500
|
|
- 8105:9000
|
|
- 1100:1100
|
|
volumes:
|
|
- inbucket-data:/data
|
|
|
|
volumes:
|
|
postgres-data:
|
|
inbucket-data:
|
|
|