mirror of
https://github.com/pooneyy/1Panel-Appstore.git
synced 2026-03-17 22:21:03 +08:00
- introduce .env.example with 1140+ configuration options for API service and worker - enhance configuration coverage for database, redis, vector stores, and storage providers - add new datasource configuration options for website readers (jinareader, firecrawl, watercrawl) - expand vector store support with additional providers including matrixone, opengauss, tablestore, and vastbase - improve workflow configuration with enhanced storage options and security settings 📝 docs(dify): update configuration templates and documentation - enhance nginx configuration with improved variable substitution and MCP proxy support - update squid proxy configuration with additional security rules and increased buffer size - improve oracle database initialization scripts with world_lexer preference - update tidb configuration files and docker-compose for version compatibility ♻️ refactor(structure): reorganize project directory layout - move configuration files from conf/ subdirectory to app root for better clarity - rename envs/dify.env to dify.env for consistency - update file paths in docker-compose.yml to reflect new directory structure - remove redundant configuration files and consolidate volumes 🔧 chore(dify): simplify form configuration and remove obsolete scripts - remove database and vector store port configurations from data.yml form fields - eliminate obsolete initialization and upgrade scripts - add new pgvector docker-entrypoint.sh script for pg_bigm installation support - update docker-compose.yml with enhanced environment variables and service configurations
63 lines
1.5 KiB
YAML
63 lines
1.5 KiB
YAML
services:
|
|
pd0:
|
|
image: pingcap/pd:v8.5.1
|
|
# ports:
|
|
# - "2379"
|
|
volumes:
|
|
- ./config/pd.toml:/pd.toml:ro
|
|
- ./volumes/data:/data
|
|
- ./volumes/logs:/logs
|
|
command:
|
|
- --name=pd0
|
|
- --client-urls=http://0.0.0.0:2379
|
|
- --peer-urls=http://0.0.0.0:2380
|
|
- --advertise-client-urls=http://pd0:2379
|
|
- --advertise-peer-urls=http://pd0:2380
|
|
- --initial-cluster=pd0=http://pd0:2380
|
|
- --data-dir=/data/pd
|
|
- --config=/pd.toml
|
|
- --log-file=/logs/pd.log
|
|
restart: on-failure
|
|
tikv:
|
|
image: pingcap/tikv:v8.5.1
|
|
volumes:
|
|
- ./volumes/data:/data
|
|
- ./volumes/logs:/logs
|
|
command:
|
|
- --addr=0.0.0.0:20160
|
|
- --advertise-addr=tikv:20160
|
|
- --status-addr=tikv:20180
|
|
- --data-dir=/data/tikv
|
|
- --pd=pd0:2379
|
|
- --log-file=/logs/tikv.log
|
|
depends_on:
|
|
- "pd0"
|
|
restart: on-failure
|
|
tidb:
|
|
image: pingcap/tidb:v8.5.1
|
|
# ports:
|
|
# - "4000:4000"
|
|
volumes:
|
|
- ./volumes/logs:/logs
|
|
command:
|
|
- --advertise-address=tidb
|
|
- --store=tikv
|
|
- --path=pd0:2379
|
|
- --log-file=/logs/tidb.log
|
|
depends_on:
|
|
- "tikv"
|
|
restart: on-failure
|
|
tiflash:
|
|
image: pingcap/tiflash:v8.5.1
|
|
volumes:
|
|
- ./config/tiflash.toml:/tiflash.toml:ro
|
|
- ./config/tiflash-learner.toml:/tiflash-learner.toml:ro
|
|
- ./volumes/data:/data
|
|
- ./volumes/logs:/logs
|
|
command:
|
|
- --config=/tiflash.toml
|
|
depends_on:
|
|
- "tikv"
|
|
- "tidb"
|
|
restart: on-failure
|