mirror of
				https://github.com/HKUDS/LightRAG.git
				synced 2025-11-03 19:29:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			520 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			520 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
services:
 | 
						|
  lightrag:
 | 
						|
    container_name: lightrag
 | 
						|
    image: ghcr.io/hkuds/lightrag:latest
 | 
						|
    build:
 | 
						|
      context: .
 | 
						|
      dockerfile: Dockerfile
 | 
						|
      tags:
 | 
						|
        - ghcr.io/hkuds/lightrag:latest
 | 
						|
    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
 | 
						|
    extra_hosts:
 | 
						|
      - "host.docker.internal:host-gateway"
 |