huoyan-enterprise/backend/.env.infr.example

32 lines
1.2 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 基础设施环境变量配置
# 使用说明:复制本文件为 .env.infr填写实际值后启动
# 启动命令docker compose --env-file .env.infr -f docker-compose.infr.yml up -d
# ==================== 全局 ====================
# Docker Compose 项目名,同时作为网络名和容器名前缀(容器名格式:项目名-容器名)
INFR_PROJECT_NAME=修改此项为项目名称
# ==================== PostgreSQL ====================
INFR_POSTGRESQL_VERSION=16.3
INFR_POSTGRESQL_CONTAINER_NAME=postgresql
INFR_POSTGRESQL_POSTGRES_PORT=51501
INFR_POSTGRESQL_POSTGRES_USER=postgres
INFR_POSTGRESQL_POSTGRES_PASSWORD=修改此项为数据库密码
# ==================== Neo4j ====================
INFR_NEO4J_VERSION=5.26-community
INFR_NEO4J_CONTAINER_NAME=neo4j
INFR_NEO4J_WEB_HTTP_PORT=51511
INFR_NEO4J_BOLT_PORT=51521
NEO4J_PASSWORD=修改此项为 Neo4j 密码
# ==================== Redis ====================
INFR_REDIS_VERSION=7.4
INFR_REDIS_CONTAINER_NAME=redis
INFR_REDIS_REDIS_PORT=51531
INFR_REDIS_REDIS_PASSWORD=修改此项为 Redis 密码
# ==================== ChromaDB ====================
INFR_CHROMA_CONTAINER_NAME=chroma
INFR_CHROMA_PORT=51541