Skip to content

Commit e98c06a

Browse files
authored
Merge pull request #49 from lbarcziova/redis-commander
Set up redis-commander for queue visualization
2 parents 23dccd8 + 74b9645 commit e98c06a

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

beeai/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,5 @@ To enable dry-run mode for testing, set the `DRY_RUN=true` environment variable.
5151

5252
You can connect to http://localhost:6006/ to access Phoenix web interface and trace agents
5353
(it works with individual runs too).
54+
55+
Redis Commander is available at http://localhost:8081/ for monitoring of the queue.

beeai/compose.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,16 @@ services:
4444
- phoenix-data:/mnt/data
4545
restart: unless-stopped
4646

47+
redis-commander:
48+
image: ghcr.io/joeferner/redis-commander:0.9.0
49+
environment:
50+
- REDIS_HOSTS=local:valkey:6379
51+
ports:
52+
- "8081:8081"
53+
depends_on:
54+
- valkey
55+
restart: unless-stopped
56+
4757
triage-agent:
4858
<<: *beeai-agent
4959
command: ["python", "agents/triage_agent.py"]

0 commit comments

Comments
 (0)