File size: 897 Bytes
63c75d5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | services:
session-amplifier:
build:
context: .
image: session-amplifier:local
container_name: session-amplifier
restart: unless-stopped
command: ["serve"]
ports:
- "8477:8477"
environment:
OPENCLAW_AGENTS_ROOT: /openclaw/agents
OPENCLAW_STATE_DIR: /data/session-amplifier
SESSION_AMPLIFIER_DB_PATH: /data/session-amplifier/session_amplifier.sqlite
MAX_TOOLRESULT_CHARS: "2000"
SPOOLER_BATCH_SIZE: "100"
REVIEW_CONFIDENCE_THRESHOLD: "0.5"
API_PORT: "8477"
volumes:
- session_amplifier_state:/data/session-amplifier
# Mount your OpenClaw home read-only so session and skill data are visible.
- ${OPENCLAW_HOME:-~/.openclaw}:/openclaw:ro
networks:
- librechat_default
networks:
librechat_default:
external: true
name: librechat_default
volumes:
session_amplifier_state:
|