# llmindex.io — prod Postgres 16 + Redis (dedicated llmindex DB) # Author: Simon-Pierre Boucher # NOTE: on m3u96b the platform currently uses the node's native Homebrew # Postgres 16 + Redis services (no Docker daemon running); this compose file # is the containerized equivalent for future Linux hosts. services: postgres: image: postgres:16 restart: unless-stopped environment: POSTGRES_USER: llmindex POSTGRES_PASSWORD: ${LLMINDEX_PG_PASSWORD:?set in .env} POSTGRES_DB: llmindex ports: - "127.0.0.1:5432:5432" volumes: - llmindex_pg:/var/lib/postgresql/data redis: image: redis:7 restart: unless-stopped ports: - "127.0.0.1:6379:6379" volumes: llmindex_pg: