Docker Compose (Recommended)
Docker Run
/data volume inside the container.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Run BotMux with Docker and Docker Compose
TELEGRAM_BOT_TOKEN="YOUR_TOKEN" docker compose up -d
docker run -d -p 8080:8080 -v botmux-data:/data \
-e TELEGRAM_BOT_TOKEN="YOUR_TOKEN" ghcr.io/skrashevich/botmux:main
/data volume inside the container.
# Standard build
docker build -t botmux .
# Multi-arch build
docker buildx build --platform linux/amd64,linux/arm64 -t botmux .
| Variable | Description |
|---|---|
TELEGRAM_BOT_TOKEN | Bot token (alternative to -token flag) |
TELEGRAM_API_URL | Custom Telegram API URL |
DEMO_MODE | Set to true for demo mode |
Was this page helpful?