Create docker-compose-del4800.yml

This commit is contained in:
sergeiknysh 2025-12-04 14:29:03 +01:00 committed by GitHub
parent f0d67f166a
commit 359f7d15f2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,20 @@
services:
lightrag:
container_name: ${CONTAINER_NAME:-lightrag}
image: ghcr.io/hkuds/lightrag:latest
ports:
- "${PORT:-9621}:9621"
volumes:
- lightrag_rag_storage:/app/data/rag_storage
- lightrag_inputs:/app/data/inputs
# конфиг либо печь в образ, либо вынести в отдельный volume/абсолютный путь:
# - /var/lib/dokploy/lightrag/config.ini:/app/config.ini:ro
env_file:
- .env
restart: unless-stopped
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
lightrag_rag_storage:
lightrag_inputs: