mirror of
https://github.com/HKUDS/LightRAG.git
synced 2025-07-24 17:30:47 +00:00
24 lines
443 B
YAML
24 lines
443 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
lightrag:
|
|
build: .
|
|
ports:
|
|
- "${PORT:-9621}:9621"
|
|
volumes:
|
|
- ./data/rag_storage:/app/data/rag_storage
|
|
- ./data/inputs:/app/data/inputs
|
|
- .env:/app/.env
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- TZ=UTC
|
|
restart: unless-stopped
|
|
networks:
|
|
- lightrag_net
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
networks:
|
|
lightrag_net:
|
|
driver: bridge
|