09e3b6ca66
Build and Push Image / build (push) Has been cancelled
Co-authored-by: Cursor <cursoragent@cursor.com>
18 lines
484 B
YAML
18 lines
484 B
YAML
# Stoat Role Bot — run with: docker compose up -d
|
|
# Set STOAT_BOT_TOKEN (and optionally PREFIX) in .env or below.
|
|
# For Stoat (stoat.chat) / Revolt API.
|
|
|
|
services:
|
|
rolebot:
|
|
build: .
|
|
container_name: stoat-role-bot
|
|
restart: unless-stopped
|
|
environment:
|
|
- STOAT_BOT_TOKEN=${STOAT_BOT_TOKEN}
|
|
- REVOLT_BOT_TOKEN=${REVOLT_BOT_TOKEN}
|
|
- PREFIX=${PREFIX:-!}
|
|
- CONFIG_PATH=/app/config
|
|
volumes:
|
|
- ./config:/app/config:rw
|
|
# env_file: .env
|