Skip to content
download Downloads App first, runner second

Choose the Bot Creator setup that fits your team.

Most teams should start with the app on mobile or desktop. Linux and the Docker runner are available when you want local workstation control or a longer-lived remote runtime.

laptop

Desktop

A spacious workspace for designing commands and organizing logic on Windows and MacOS.

terminal

Linux

Run the product locally on Linux when you want direct control without moving to containers immediately.

Advanced Setup

Docker runner for remote Linux uptime.

The runner is designed for teams that already manage the bot in the app and want a browser-based runtime on a server or Raspberry Pi.

  • check_circle

    Browser-based runtime

    Access your bot control panel from any browser on your network.

  • check_circle

    Persistent state

    Logs and state persist in mounted Docker volumes for reliable operations.

1. Pull the image

docker pull ketsuna-org/bot-creator-runner:latest

2. Create the volume

docker volume create bot_creator_data

3. Start the runner

docker run --rm -p 8080:8080 -e BOT_CREATOR_WEB_HOST=0.0.0.0 -e BOT_CREATOR_API_TOKEN=votre_token -v bot_creator_data:/data ketsuna-org/bot-creator-runner:latest