🏋️ slaves.wtf
Self hosting

Docker

Run your slave in Docker

The simplest way to self-host a slave.

Quick start

git clone https://github.com/DecOperations/slaves.wtf.git
cd slaves.wtf/core
docker compose up -d

Environment

Create a .env file in core/:

SLAVE_PROVIDER=anthropic
SLAVE_MODEL=claude-opus-4-6
SLAVE_API_KEY=sk-ant-...
SLAVE_CHANNELS=telegram,discord
TELEGRAM_TOKEN=your-token
DISCORD_TOKEN=your-token

Docker Compose

The included docker-compose.yml sets up:

  • The slave daemon
  • Persistent volume for memory/data
  • Health checks
  • Auto-restart on failure

Custom Dockerfile

For advanced setups, use the provided Dockerfiles:

  • Dockerfile — standard build
  • Dockerfile.sandbox — sandboxed execution for agent tools
  • Dockerfile.sandbox-browser — includes Playwright browser for web automation

On this page