2026-01-24 07:15:40 +00:00
---
title: Fly.io
description: Deploy Clawdbot on Fly.io
---
# Fly.io Deployment
2026-01-24 08:05:57 +00:00
**Goal:** Clawdbot Gateway running on a [Fly.io ](https://fly.io ) machine with persistent storage, automatic HTTPS, and Discord/channel access.
2026-01-24 07:15:40 +00:00
2026-01-24 08:05:57 +00:00
## What you need
2026-01-24 07:15:40 +00:00
- [flyctl CLI ](https://fly.io/docs/hands-on/install-flyctl/ ) installed
2026-01-24 08:05:57 +00:00
- Fly.io account (free tier works)
- Model auth: Anthropic API key (or other provider keys)
- Channel credentials: Discord bot token, Telegram token, etc.
2026-01-24 07:15:40 +00:00
2026-01-24 08:05:57 +00:00
## Beginner quick path
1. Clone repo → customize `fly.toml`
2. Create app + volume → set secrets
3. Deploy with `fly deploy`
4. SSH in to create config or use Control UI
## 1) Create the Fly app
2026-01-24 07:15:40 +00:00
```bash
2026-01-24 08:05:57 +00:00
# Clone the repo
2026-01-24 07:15:40 +00:00
git clone https://github.com/clawdbot/clawdbot.git
cd clawdbot
2026-01-24 08:05:57 +00:00
# Create a new Fly app (pick your own name)
fly apps create my-clawdbot
2026-01-24 07:15:40 +00:00
2026-01-24 08:05:57 +00:00
# Create a persistent volume (1GB is usually enough)
2026-01-24 07:15:40 +00:00
fly volumes create clawdbot_data --size 1 --region lhr
2026-01-24 08:05:57 +00:00
```
2026-01-24 07:15:40 +00:00
2026-01-24 08:05:57 +00:00
**Tip:** Choose a region close to you. Common options: `lhr` (London), `iad` (Virginia), `sjc` (San Jose).
2026-01-24 07:15:40 +00:00
2026-01-24 08:05:57 +00:00
## 2) Configure fly.toml
2026-01-24 07:15:40 +00:00
2026-01-24 08:05:57 +00:00
Edit `fly.toml` to match your app name and requirements:
2026-01-24 07:15:40 +00:00
2026-01-24 08:05:57 +00:00
```toml
app = "my-clawdbot" # Your app name
primary_region = "lhr"
2026-01-24 07:15:40 +00:00
2026-01-24 08:05:57 +00:00
[build]
dockerfile = "Dockerfile"
2026-01-24 08:00:07 +00:00
2026-01-24 08:05:57 +00:00
[env]
NODE_ENV = "production"
CLAWDBOT_PREFER_PNPM = "1"
CLAWDBOT_STATE_DIR = "/data"
NODE_OPTIONS = "--max-old-space-size=1536"
[processes]
app = "node dist/index.js gateway --allow-unconfigured --port 3000 --bind lan"
[http_service]
internal_port = 3000
force_https = true
auto_stop_machines = false
auto_start_machines = true
min_machines_running = 1
processes = ["app"]
2026-01-24 08:00:07 +00:00
[[vm]]
size = "shared-cpu-2x"
memory = "2048mb"
2026-01-24 08:05:57 +00:00
[mounts]
source = "clawdbot_data"
destination = "/data"
2026-01-24 08:00:07 +00:00
```
2026-01-24 08:05:57 +00:00
**Key settings:**
2026-01-24 08:00:07 +00:00
2026-01-24 08:05:57 +00:00
| Setting | Why |
|---------|-----|
| `--bind lan` | Binds to `0.0.0.0` so Fly's proxy can reach the gateway |
| `--allow-unconfigured` | Starts without a config file (you'll create one after) |
| `memory = "2048mb"` | 512MB is too small; 2GB recommended |
| `CLAWDBOT_STATE_DIR = "/data"` | Persists state on the volume |
2026-01-24 08:00:07 +00:00
2026-01-24 08:05:57 +00:00
## 3) Set secrets
```bash
# Required: Gateway token (for non-loopback binding)
fly secrets set CLAWDBOT_GATEWAY_TOKEN=$(openssl rand -hex 32)
# Model provider API keys
fly secrets set ANTHROPIC_API_KEY=sk-ant-...
# Optional: Other providers
fly secrets set OPENAI_API_KEY=sk-...
fly secrets set GOOGLE_API_KEY=...
# Channel tokens
fly secrets set DISCORD_BOT_TOKEN=MTQ...
2026-01-24 08:00:07 +00:00
```
2026-01-24 08:05:57 +00:00
**Notes:**
- Non-loopback binds (`--bind lan` ) require `CLAWDBOT_GATEWAY_TOKEN` for security.
- Treat these tokens like passwords.
## 4) Deploy
2026-01-24 08:00:07 +00:00
```bash
2026-01-24 08:05:57 +00:00
fly deploy
2026-01-24 08:00:07 +00:00
```
2026-01-24 08:05:57 +00:00
First deploy builds the Docker image (~2-3 minutes). Subsequent deploys are faster.
2026-01-24 08:00:07 +00:00
2026-01-24 08:05:57 +00:00
After deployment, verify:
```bash
fly status
fly logs
```
2026-01-24 08:00:07 +00:00
2026-01-24 08:05:57 +00:00
You should see:
```
[gateway] listening on ws://0.0.0.0:3000 (PID xxx)
[discord] logged in to discord as xxx
2026-01-24 08:00:07 +00:00
```
2026-01-24 08:05:57 +00:00
## 5) Create config file
2026-01-24 08:00:07 +00:00
2026-01-24 08:05:57 +00:00
SSH into the machine to create a proper config:
2026-01-24 08:00:07 +00:00
2026-01-24 08:05:57 +00:00
```bash
fly ssh console
```
2026-01-24 08:00:07 +00:00
2026-01-24 08:05:57 +00:00
Create the config directory and file:
```bash
mkdir -p /data/.clawdbot
cat > /data/.clawdbot/clawdbot.json < < 'EOF'
{
"agents": {
"defaults": {
"model": {
"primary": "anthropic/claude-opus-4-5"
},
"models": {
"anthropic/claude-opus-4-5": {},
"anthropic/claude-sonnet-4-5": {}
},
"maxConcurrent": 4
},
"list": [
{
"id": "main",
"default": true
}
]
},
"channels": {
"discord": {
"enabled": true
}
}
}
EOF
```
Restart to apply:
```bash
exit
fly machine restart < machine-id >
2026-01-24 08:00:07 +00:00
```
2026-01-24 07:15:40 +00:00
2026-01-24 08:05:57 +00:00
## 6) Access the Gateway
2026-01-24 07:15:40 +00:00
2026-01-24 08:05:57 +00:00
### Control UI
2026-01-24 07:15:40 +00:00
2026-01-24 08:05:57 +00:00
Open in browser:
2026-01-24 07:15:40 +00:00
```bash
2026-01-24 08:05:57 +00:00
fly open
2026-01-24 07:15:40 +00:00
```
2026-01-24 08:05:57 +00:00
Or visit `https://my-clawdbot.fly.dev/`
2026-01-24 07:15:40 +00:00
2026-01-24 08:05:57 +00:00
Paste your gateway token (the one from `CLAWDBOT_GATEWAY_TOKEN` ) to authenticate.
### Logs
2026-01-24 07:15:40 +00:00
```bash
2026-01-24 08:05:57 +00:00
fly logs # Live logs
fly logs --no-tail # Recent logs
```
2026-01-24 07:15:40 +00:00
2026-01-24 08:05:57 +00:00
### SSH Console
2026-01-24 07:15:40 +00:00
2026-01-24 08:05:57 +00:00
```bash
2026-01-24 07:15:40 +00:00
fly ssh console
```
2026-01-24 08:00:07 +00:00
## Troubleshooting
### "App is not listening on expected address"
2026-01-24 08:05:57 +00:00
The gateway is binding to `127.0.0.1` instead of `0.0.0.0` .
**Fix:** Add `--bind lan` to your process command in `fly.toml` .
2026-01-24 08:00:07 +00:00
### OOM / Memory Issues
2026-01-24 08:05:57 +00:00
Container keeps restarting or getting killed.
2026-01-24 08:00:07 +00:00
2026-01-24 08:05:57 +00:00
**Fix:** Increase memory in `fly.toml` :
2026-01-24 08:00:07 +00:00
```toml
[[vm]]
memory = "2048mb"
```
### Gateway Lock Issues
2026-01-24 08:05:57 +00:00
Gateway refuses to start with "already running" errors.
This happens when the container restarts but the PID lock file persists on the volume.
2026-01-24 08:00:07 +00:00
2026-01-24 08:05:57 +00:00
**Fix:** Delete the lock file:
2026-01-24 08:00:07 +00:00
```bash
fly ssh console
rm /data/.clawdbot/run/gateway.*.lock
2026-01-24 08:05:57 +00:00
exit
fly machine restart < machine-id >
```
### Config Not Being Read
If using `--allow-unconfigured` , the gateway creates a minimal config. Your custom config at `/data/.clawdbot/clawdbot.json` should be read on restart.
Verify the config exists:
```bash
fly ssh console --command "cat /data/.clawdbot/clawdbot.json"
2026-01-24 08:00:07 +00:00
```
2026-01-24 08:05:57 +00:00
## Updates
```bash
# Pull latest changes
git pull
# Redeploy
fly deploy
# Check health
fly status
fly logs
```
2026-01-24 08:00:07 +00:00
2026-01-24 07:15:40 +00:00
## Notes
2026-01-24 08:05:57 +00:00
- Fly.io uses **x86 architecture** (not ARM)
2026-01-24 07:15:40 +00:00
- The Dockerfile is compatible with both architectures
2026-01-24 08:05:57 +00:00
- For WhatsApp/Telegram onboarding, use `fly ssh console`
- Persistent data lives on the volume at `/data`
## Cost
With the recommended config (`shared-cpu-2x` , 2GB RAM):
- ~$10-15/month depending on usage
- Free tier includes some allowance
See [Fly.io pricing ](https://fly.io/docs/about/pricing/ ) for details.