mirror of
https://github.com/soconnor0919/beenvoice.git
synced 2025-12-11 08:34:43 -05:00
22 lines
382 B
YAML
22 lines
382 B
YAML
services:
|
|
db:
|
|
image: postgres:17-alpine
|
|
container_name: beenvoice-db
|
|
env_file:
|
|
- .env.local
|
|
volumes:
|
|
- beenvoice_pg_data:/var/lib/postgresql/data
|
|
ports:
|
|
- "5432:5432"
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U postgres"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 10
|
|
|
|
volumes:
|
|
beenvoice_pg_data:
|
|
driver: local
|
|
|
|
|