-
-
Notifications
You must be signed in to change notification settings - Fork 43
Description
Describe your question or issue
I created 2 timed events and it's not working and I don't know if I missed some configuration but it looks correct.
Environment (please complete the following information):
- Host OS: Windows (wsl ubuntu 24.04)
- MeshMonitor Version: lastest
- Deployment Method: Docker Compose
- Docker/Container Version (if applicable): [e.g., v1.2.3]
Configuration
Please share relevant configuration files (remove any sensitive information):
docker-compose:
services:
meshmonitor:
image: ghcr.io/yeraze/meshmonitor:latest
container_name: meshmonitor
ports:
- "8080:3001"
restart: unless-stopped
volumes:
- meshmonitor-data:/data
# Mount local scripts directory for Auto Responder scripts
- ./scripts:/data/scripts
environment:
- TZ=America/Sao_Paulo
- MESHTASTIC_NODE_IP=192.168.1.228 # Change to your node's IP
- ALLOWED_ORIGINS=http://localhost:8080 # Required for CORS
- MESHMANAGER_URL=http://meshmanager:8000
- NODE_ENV=development
- ENABLE_VIRTUAL_NODE=true
- VIRTUAL_NODE_PORT=4404
AI Responder - AI-powered mesh assistant
Credit: https://github.com/LN4CY/ai-responder
ai-responder:
image: ghcr.io/ln4cy/ai-responder:sha-b45e0442f554960a8a270d9b7d1b4e7cbffe630d
container_name: meshmonitor-ai-responder
restart: unless-stopped
environment:
- INTERFACE_TYPE=tcp
- MESHTASTIC_HOST=meshmonitor
- MESHTASTIC_PORT=4404
- AI_PROVIDER=gemini
- ADMIN_NODE_ID=!node_id
- ALLOWED_CHANNELS=0
- GEMINI_API_KEY=****
volumes:
- ai-data:/app/data
depends_on:
- meshmonitor
volumes:
meshmonitor-data:
driver: local
ai-data:
driver: local
I also have a blank .env file.
Logs
Please provide relevant log output:
There are no logs (success or error)
Screenshots
this one runs a python script

this one is text only:
What have you tried?
I tought about the timezone so I set the tz on docker-compose.yaml but it did not change anything.
Additional context
Add any other context, error messages, or information that might be helpful.