mirror of
https://github.com/HKUDS/LightRAG.git
synced 2025-06-26 22:00:19 +00:00
14 lines
293 B
YAML
14 lines
293 B
YAML
services:
|
|
lightrag:
|
|
build: .
|
|
ports:
|
|
- "${PORT:-9621}:9621"
|
|
volumes:
|
|
- ./data/rag_storage:/app/data/rag_storage
|
|
- ./data/inputs:/app/data/inputs
|
|
- ./config.ini:/app/config.ini
|
|
- ./.env:/app/.env
|
|
env_file:
|
|
- .env
|
|
restart: unless-stopped
|