c00d038df2
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
21 lines
429 B
YAML
21 lines
429 B
YAML
services:
|
|
postgres:
|
|
image: pgvector/pgvector:pg16
|
|
container_name: iios-db
|
|
environment:
|
|
POSTGRES_USER: iios
|
|
POSTGRES_PASSWORD: iios
|
|
POSTGRES_DB: iios
|
|
ports:
|
|
- "5434:5432"
|
|
volumes:
|
|
- iios_postgres_data:/var/lib/postgresql/data
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U iios"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 10
|
|
|
|
volumes:
|
|
iios_postgres_data:
|