mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
22 lines
427 B
YAML
22 lines
427 B
YAML
name: portabase-dev
|
|
|
|
services:
|
|
db:
|
|
image: postgres:17-alpine
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- postgres-data:/var/lib/postgresql/data
|
|
environment:
|
|
- POSTGRES_DB=devdb
|
|
- POSTGRES_USER=devuser
|
|
- POSTGRES_PASSWORD=changeme
|
|
healthcheck:
|
|
test: [ "CMD-SHELL", "pg_isready -U devuser -d devdb" ]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
|
|
volumes:
|
|
postgres-data:
|