Infrastructure credentials
The default configuration ships with weak, well-known passwords for PostgreSQL, MinIO, and Redis. Replace them with strong, unique values before exposing Tracecat to production traffic.command override in your docker-compose.yml:
Platform secrets
Tracecat requires four cryptographic secrets, plus an optional keyring if you enable Temporal payload encryption.
Tracecat requires four secrets. Generate them with
openssl:
Temporal payload keyring
TEMPORAL__PAYLOAD_ENCRYPTION_KEYRING holds a JSON keyring rather than a single key. Each entry maps a key ID to a root secret, and current_key_id selects the key that encrypts new payloads:
TEMPORAL__PAYLOAD_ENCRYPTION_KEYRING_ARN instead, and Tracecat fetches the keyring from Secrets Manager at runtime.
Where to store them
Keep these out of your application configuration and out of version control. Use the mechanism your platform already provides.
On Kubernetes, prefer External Secrets Operator over a hand-created Secret. Your secret manager stays the source of truth, the operator re-syncs values rather than copying them, and no plaintext passes through a shell history or a manifest. Reserve chart-managed secret templates for pipelines that encrypt values at rest with Sealed Secrets or SOPS.
Rotation
Rotation support differs by secret. Check the differences before you plan a rotation window.Isolation
Tracecat executes user-defined Python scripts, custom actions, and agents inside the executor service. You choose between nsjail isolation and no isolation. Defaults differ by deployment target.nsjail sandbox (recommended for production)
For production, enable nsjail — a process isolation tool from Google that enforces:- Filesystem isolation — scripts reach only their job directory and explicitly mounted paths. The host filesystem stays invisible.
- Resource limits — nsjail caps CPU time, memory, file size, and process count per execution, so a runaway script cannot starve the host.
- User namespace separation — scripts run as unprivileged users even when the container runs as root.
- Network access — scripts keep network access, since they need to reach databases, APIs, and S3, but nsjail confines it to the container’s network namespace.
.env:
- Linux with kernel 4.6+
- Docker privileged mode or
CAP_SYS_ADMINcapability on the executor container - The nsjail binary and sandbox rootfs (included in Tracecat images)
nsjail is not supported on macOS or Windows. Use the
direct backend on those platforms.Resource limits
Each sandbox runs under nsjail rlimits. The memory cap is the one you tune; the others are fixed.
Both variables are read by the
executor and agent-executor processes, so setting one in a .env file is not enough on its own: your deployment has to pass it through to those two services. On Docker Compose add it to their environment blocks, and on Kubernetes to the corresponding values.
The memory cap is rlimit_as: it bounds the virtual address space a process may map, not its resident memory. A runtime that reserves large address ranges up front hits the cap before it uses that much RAM, so size it above the peak virtual size of your workload rather than its RSS. Python raises MemoryError at the cap; native runtimes such as the agent’s Claude Code CLI abort.
The cap applies per process inside the sandbox. The executor pod’s container memory limit still applies on top and covers every concurrent sandbox, so raising a sandbox cap without raising the pod limit trades a sandbox failure for an OOM kill of the executor.
Tracecat reports an action or agent run that exceeds the memory, CPU time, or file size limit as sandbox.resource_limit_exceeded. The failure is attributed to the workload, is not retried, and the error names the env var that controls the cap.
Two limits fall outside that guarantee. Exceeding the process count fails process creation inside the sandbox with an ordinary error instead of killing the workload, so it surfaces as whatever the script or agent does with that error. Dependency installation is reported as a package installation failure whichever limit it hits.
These limits apply only when nsjail is enabled. Without it Tracecat installs no rlimits, so a failure of the same shape is reported as an ordinary workload or platform failure.
No isolation
Without nsjail, scripts, custom actions, and agents run as regular subprocesses in the executor. This is a supported production configuration when you trust everything that runs. That means your own workflow and custom registry code, the third-party dependencies those actions install, and the agents, tools, and MCP servers you enable. Review that code and pin those dependencies as you would any code with direct access to your systems. Choose nsjail instead when you run code you have not reviewed, such as untrusted third-party packages or agents that generate and execute their own code.Choosing a backend
Authentication
Docker Compose deployments default to basic email/password authentication. For production, configure OIDC or SAML SSO. See Roles and permissions for the roles you assign to users and groups once they can sign in.TLS
Never run production traffic over plain HTTP. See TLS and certificates for Caddy-based automatic TLS setup, custom certificates, and trusting internal CAs.Related pages
- See Architecture for the platform and AI agent trust model.