Skip to content

Commit 58c239d

Browse files
committed
chore: pass MONITOR env vars through docker-compose
1 parent 59aa5c6 commit 58c239d

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

docker-compose.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ services:
3333
- WORK_DIR=${WORK_DIR:-/app/workspace}
3434
- USER_ID=${USER_ID:-}
3535
- CATEGORY_NAME=${CATEGORY_NAME:-claude-code}
36-
36+
- MONITOR_CHANNEL_ID=${MONITOR_CHANNEL_ID:-}
37+
- MONITOR_BOT_IDS=${MONITOR_BOT_IDS:-}
38+
3739
# Volume mounts for persistence and workspace access
3840
volumes:
3941
# Persist bot data (todos, sessions, etc.)
@@ -42,7 +44,7 @@ services:
4244
# Optional: Mount your local workspace for Claude to work on
4345
# Uncomment and modify path as needed:
4446
# - /path/to/your/project:/app/workspace
45-
47+
4648
# Resource limits (adjust based on your needs)
4749
deploy:
4850
resources:
@@ -52,18 +54,18 @@ services:
5254
reservations:
5355
cpus: '0.5'
5456
memory: 512M
55-
57+
5658
# Logging configuration
5759
logging:
5860
driver: "json-file"
5961
options:
6062
max-size: "10m"
6163
max-file: "3"
62-
64+
6365
# Security options
6466
security_opt:
6567
- no-new-privileges:true
66-
68+
6769
# Network mode
6870
networks:
6971
- claude-network

docs/known-issues.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Known Issues & Accepted Risks
22

3-
> Last audited: 2026-03-03
3+
> Last audited: 2026-03-03
44
> Context: Single-user personal Discord bot — not a production multi-user service
55
66
This document tracks issues identified during a comprehensive code audit that were **intentionally not fixed**. Each entry explains why the issue exists, why it doesn't matter for our use case, and under what conditions (if any) it would need revisiting.

0 commit comments

Comments
 (0)