DocumentationInfrastructure
Sovereign Infrastructure

Self-Hosted Guide

Replaysafe is built for the **Sovereign Homelab** and the **Next Generation of Autonomous Agents**. While enterprise teams use us for financial transaction safety, self-hosters use us to build more reliable AI agents and keep their automated lives from falling apart.

Reliability Use Cases

Automation on consumer hardware and non-deterministic AI agents are prone to "Silent Failures" - reboots, state drift, and execution loops. Replaysafe provides the "Safety Primitives" to handle these gracefully.

Smart Home Safety

If a 'Lock Doors' or 'Turn Off Stove' command fails halfway through a Wi-Fi blink, Replaysafe ensures it reverts to a safe state.

Autonomous Agent Reliability

Prevent AI agents from repeating expensive or dangerous actions when they restart after a non-deterministic failure.

Media Download Stacks

Prevent automated downloaders (Radarr/Sonarr) from looping or hammering external APIs during network degradation.

Local AI Stability

Prevent redundant local LLM loops (Ollama) from pinning your GPU at 100% due to accidental script recursion.

One-Click Deployment

Replaysafe is 100% locally hostable. No telemetry, no external cloud dependencies, and 100% local data sovereignty.

version: "3.8"
services:
  Replaysafe-db:
    image: postgres:15-alpine
    environment:
      - POSTGRES_DB=Replaysafe
      - POSTGRES_PASSWORD=password
    volumes:
      - ./data/db:/var/lib/postgresql/data

  Replaysafe-app:
    image: Replaysafe/Replaysafe:latest
    ports:
      - "3000:3000"
    environment:
      - DATABASE_URL=postgresql://postgres:password@Replaysafe-db:5432/Replaysafe
    depends_on:
      - Replaysafe-db

Privacy & Sovereignty

Zero Telemetry

We never send your data to external servers.

Offline Mode

Fully functional in air-gapped networks.

ARM64 Support

Optimized for Raspberry Pi 4/5.

AGPL-3.0

Committed to FOSS forever.