-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.docker.example
More file actions
61 lines (53 loc) · 2.17 KB
/
.env.docker.example
File metadata and controls
61 lines (53 loc) · 2.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Docker Environment Configuration for LSI Ecosystem
# Copy this file to .env and fill in your values
# This file is used by docker-compose for configuration
# ============================================================================
# LSI Configuration
# ============================================================================
NODE_ENV=production
LSI_LOG_LEVEL=info
LSI_VERSION=2.0.0
# ============================================================================
# API Keys (Required)
# ============================================================================
ZHIPU_API_KEY=your_zhipu_api_key_here
#OPENAI_API_KEY=your_openai_api_key_here
#ANTHROPIC_API_KEY=your_anthropic_api_key_here
# ============================================================================
# Vector Database Configuration
# ============================================================================
# Options: memory, chroma, pinecone
VECTOR_DB_TYPE=chroma
CHROMA_HOST=chroma
CHROMA_PORT=8000
CHROMA_TOKEN=
# ============================================================================
# PostgreSQL Configuration
# ============================================================================
POSTGRES_USER=lsi
POSTGRES_PASSWORD=your_secure_password_here
POSTGRES_DB=lsi_db
POSTGRES_PORT=5432
# ============================================================================
# Redis Configuration
# ============================================================================
REDIS_HOST=redis
REDIS_PORT=6379
REDIS_PASSWORD=
# ============================================================================
# Service Ports
# ============================================================================
LSI_PORT=3000
CHROMA_PORT=8000
POSTGRES_PORT=5432
REDIS_PORT=6379
ADMINER_PORT=8080
# ============================================================================
# Docker Registry (for build/push scripts)
# ============================================================================
DOCKER_REGISTRY=docker.io/lsi-ecosystem
# ============================================================================
# Build Configuration
# ============================================================================
VERSION=2.0.0
GIT_COMMIT=