Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cli/internal/compose/compose.yml.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ services:
SYNTHORG_MEMORY_DIR: "/data/memory"
SYNTHORG_PERSISTENCE_BACKEND: {{yamlStr .PersistenceBackend}}
SYNTHORG_MEMORY_BACKEND: {{yamlStr .MemoryBackend}}
MEM0_TELEMETRY: "false"
SYNTHORG_LOG_LEVEL: {{yamlStr .LogLevel}}
{{- if .JWTSecret}}
SYNTHORG_JWT_SECRET: {{yamlStr .JWTSecret}}
Expand Down
1 change: 1 addition & 0 deletions cli/testdata/compose_custom_ports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ services:
SYNTHORG_MEMORY_DIR: "/data/memory"
SYNTHORG_PERSISTENCE_BACKEND: "sqlite"
SYNTHORG_MEMORY_BACKEND: "mem0"
MEM0_TELEMETRY: "false"
SYNTHORG_LOG_LEVEL: "debug"
SYNTHORG_JWT_SECRET: "test-secret-value"
user: "65532:65532"
Expand Down
1 change: 1 addition & 0 deletions cli/testdata/compose_default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ services:
SYNTHORG_MEMORY_DIR: "/data/memory"
SYNTHORG_PERSISTENCE_BACKEND: "sqlite"
SYNTHORG_MEMORY_BACKEND: "mem0"
MEM0_TELEMETRY: "false"
SYNTHORG_LOG_LEVEL: "info"
user: "65532:65532"
# CIS Docker Benchmark v1.6.0 hardening (5.3, 5.12, 5.25, 5.28)
Expand Down
1 change: 1 addition & 0 deletions cli/testdata/compose_digest_pins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ services:
SYNTHORG_MEMORY_DIR: "/data/memory"
SYNTHORG_PERSISTENCE_BACKEND: "sqlite"
SYNTHORG_MEMORY_BACKEND: "mem0"
MEM0_TELEMETRY: "false"
SYNTHORG_LOG_LEVEL: "info"
user: "65532:65532"
# CIS Docker Benchmark v1.6.0 hardening (5.3, 5.12, 5.25, 5.28)
Expand Down
5 changes: 5 additions & 0 deletions docker/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ BACKEND_PORT=8000
# Host port for the web dashboard
WEB_PORT=3000

# --- Mem0 Memory Backend ----------------------------------------------------
# Disable Mem0 telemetry (avoids initializing an extra vector store for
# telemetry data collection — reduces overhead and keeps data local).
MEM0_TELEMETRY=false

# --- Docker Sandbox ----------------------------------------------------------
# Docker socket for agent code execution sandbox (optional)
# DOCKER_HOST=unix:///var/run/docker.sock
2 changes: 2 additions & 0 deletions docker/compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ services:
SYNTHORG_PORT: "${SYNTHORG_PORT:-8000}"
SYNTHORG_DB_PATH: "/data/synthorg.db"
SYNTHORG_MEMORY_DIR: "/data/memory"
# Disable Mem0 telemetry by default. Override in .env to enable.
MEM0_TELEMETRY: "${MEM0_TELEMETRY:-false}"
# Bridge SYNTHORG_* to uvicorn's native env vars (exec form CMD, no shell)
UVICORN_HOST: "${SYNTHORG_HOST:-0.0.0.0}"
UVICORN_PORT: "${SYNTHORG_PORT:-8000}"
Expand Down
Loading