The official support bot for the discord-luau Discord server.
pesde install
touch .env.luau # add your DISCORD_BOT_TOKEN
zune run src/init.luau.env.luau must export a table with a DISCORD_BOT_TOKEN key:
return {
DISCORD_BOT_TOKEN = "your_token_here"
}Build and run a one-off container:
docker build -t discord-bot .
docker run -e DISCORD_BOT_TOKEN=your_token -v ./bot.db:/app/bot.db discord-botbot.db is mounted as a volume so it persists across container restarts. If the file does not exist yet, create it first:
touch bot.dbCreate a .env file in the same directory as this repository
touch .envDISCORD_BOT_TOKEN=your_token_hereThen start the bot:
docker compose up -dTo rebuild after a code change:
docker compose up --build -dLogs:
docker compose logs -f