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: