opencrabs 0.3.25

The autonomous, self-improving AI agent. Single Rust binary. Every channel. Install with: cargo install opencrabs
Documentation
services:
  opencrabs:
    build:
      context: ..
      dockerfile: src/docker/Dockerfile
    container_name: opencrabs
    restart: unless-stopped
    # Load .env from project root if it exists (optional — onboarding wizard works without it)
    env_file:
      - path: ../.env
        required: false
    # Explicit env vars override .env (set on host or in shell)
    environment:
      - ANTHROPIC_API_KEY
      - ANTHROPIC_MAX_SETUP_TOKEN
      - OPENAI_API_KEY
      - OPENROUTER_API_KEY
      - GEMINI_API_KEY
      - DASHSCOPE_API_KEY
      - GROQ_API_KEY
      - TELEGRAM_BOT_TOKEN
      - DISCORD_BOT_TOKEN
      - SLACK_BOT_TOKEN
      - SLACK_APP_TOKEN
    volumes:
      # Persist config, workspace, memory DB across restarts
      - opencrabs-data:/home/opencrabs/.opencrabs
    # Interactive TUI needs a TTY
    tty: true
    stdin_open: true

volumes:
  opencrabs-data: