Files
iios/docker-compose.yml
T
2026-06-30 20:56:36 +05:30

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: