Files
teatea-pension/compose.yaml

22 lines
526 B
YAML

services:
postgres:
image: pgvector/pgvector:pg17
container_name: teatea-postgres
restart: unless-stopped
environment:
POSTGRES_DB: teatea_pension
POSTGRES_USER: teatea
POSTGRES_PASSWORD: teatea_dev_password
ports:
- "127.0.0.1:5432:5432"
volumes:
- teatea-postgres-data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U teatea -d teatea_pension"]
interval: 5s
timeout: 5s
retries: 20
volumes:
teatea-postgres-data: