streaming, markdown, model selecting, and lots more
This commit is contained in:
+10
-14
@@ -1,29 +1,25 @@
|
||||
name: veridian-development
|
||||
services:
|
||||
postgresql:
|
||||
image: pgvector/pgvector:pg17
|
||||
container_name: veridian-postgres
|
||||
command: postgres -c wal_level=logical
|
||||
triplit:
|
||||
image: aspencloud/triplit-server:latest
|
||||
container_name: veridian-triplit
|
||||
ports:
|
||||
- "5432:5432"
|
||||
- "8080:6543"
|
||||
volumes:
|
||||
- "data:/var/lib/postgresql/data"
|
||||
- "triplit_data:/data"
|
||||
environment:
|
||||
- "POSTGRES_DB=${VERIDIAN_DB_NAME}"
|
||||
- "POSTGRES_PASSWORD=${POSTGRES_PASSWORD}"
|
||||
env_file:
|
||||
- .env
|
||||
LOCAL_DATABASE_URL: /data/triplit.db
|
||||
NODE_OPTIONS: --max-old-space-size=4096
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "pg_isready -U postgres"]
|
||||
interval: 5s
|
||||
test: ["CMD", "curl", "-f", "http://localhost:6543/healthcheck"]
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
restart: always
|
||||
networks:
|
||||
- veridian-network
|
||||
|
||||
volumes:
|
||||
data:
|
||||
triplit_data:
|
||||
driver: local
|
||||
|
||||
networks:
|
||||
|
||||
Reference in New Issue
Block a user