Replaces all ghcr.io/hanzoai/<svc>:latest pins with the latest published semver tag for each service. Per CLAUDE.md auto-bump policy: mutable branch tags (:latest, :main, :dev) are deprecated for cluster pins — only immutable semver permitted. Bulk update across services with published v* tags. Services without a published semver remain on :latest until their release pipeline cuts a v* tag.
32 lines
626 B
YAML
32 lines
626 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
vectordb:
|
|
image: pgvector/pgvector:0.8.0-pg15-trixie
|
|
environment:
|
|
POSTGRES_DB: mydatabase
|
|
POSTGRES_USER: myuser
|
|
POSTGRES_PASSWORD: mypassword
|
|
volumes:
|
|
- pgdata2:/var/lib/postgresql/data
|
|
ports:
|
|
- "5433:5432"
|
|
|
|
rag_api:
|
|
image: ghcr.io/hanzoai/chat-rag-api:v0.7.8
|
|
environment:
|
|
- DB_HOST=vectordb
|
|
- DB_PORT=5432
|
|
- POSTGRES_DB=mydatabase
|
|
- POSTGRES_USER=myuser
|
|
- POSTGRES_PASSWORD=mypassword
|
|
ports:
|
|
- "${RAG_PORT}:${RAG_PORT}"
|
|
depends_on:
|
|
- vectordb
|
|
env_file:
|
|
- .env
|
|
|
|
volumes:
|
|
pgdata2:
|