Added Discord bot 'Red bot'

This commit is contained in:
2025-08-29 00:32:23 +00:00
parent 2280ba017c
commit ecad8c9179
5 changed files with 23 additions and 0 deletions

View File

@@ -50,6 +50,7 @@ docker compose up -d
- **LiteLLM** (4000) - LLM API Flattening
- **LiteLLM Postgres** - LLM database
- **Obsidian Remote** (8181) - Note-taking
- **Redbot** - Discord Bot
- **Syncthing** (8384) - File synchronization
### 🛠️ System Utilities

View File

@@ -452,6 +452,18 @@ services:
- 8181:8080
- 8443:8443
restart: unless-stopped
redbot:
container_name: redbot
image: phasecorex/red-discordbot
volumes:
- /docker-local/redbot:/data
environment:
- TOKEN=${REDBOT_TOKEN}
- PREFIX=!
- TZ=Pacific/Auckland
- PUID=1000
restart: unless-stopped
syncthing:
image: syncthing/syncthing

0
redbot/.permissions-set Normal file
View File

9
redbot/config.json Normal file
View File

@@ -0,0 +1,9 @@
{
"docker": {
"DATA_PATH": "/data",
"COG_PATH_APPEND": "cogs",
"CORE_PATH_APPEND": "core",
"STORAGE_TYPE": "JSON",
"STORAGE_DETAILS": {}
}
}

1
redbot/venv/.pyversion Normal file
View File

@@ -0,0 +1 @@
python3.11