Local Files

Configure local file system access

Achtung

Nur für Enterprise Outpost: Lokale Datei-Quellen sind ausschließlich für Kunden verfügbar, die eine eigene Outpost-Instanz betreiben. Die Konfiguration erfolgt über YAML-Dateien (und Docker-Volume-Mounts) auf dem Outpost-Server - nicht über die meinGPT-Oberfläche. Cloud-Kunden ohne eigene Outpost-Instanz können diesen Source-Typ nicht nutzen.

Runtime-Konfiguration

data_pools:
  - id: local
    type: local
    base_path: ./data

Configuration Options

FieldTypeDefaultRequiredDescription
idstring-Unique identifier for the data pool
typestring-Must be "local"
base_pathstring"./"Directory path to sync from

Synchronization

  • Outpost scans base_path and syncs files into local ingest storage.
  • Changes are picked up in later sync runs (new/updated/deleted files).
  • Use read-only mounts when possible to reduce operational risk.

Docker Setup

docker-compose.yml
services:
  vault:
    volumes:
      - ./data:/data/vault              # Local directory
      - /mnt/network:/data/network:ro   # Network drive (read-only)

Basic Operations

# Add files to sync
mkdir -p data
cp your-documents.pdf data/
 
# Check processing
docker compose logs vault | grep -i local

Local File System Documentation

War diese Seite hilfreich?