Commit Graph

5 Commits

Author SHA1 Message Date
24d28a68a2 Fix MQTT public broker URL not being passed to Docker container
The MQTT_PUBLIC_BROKER_URL environment variable was defined in .env but
wasn't being passed to the app container in docker-compose.yml, causing
emails to still show the internal broker URL (mqtt://mosquitto:1883)
instead of the public one (mqtt://192.168.10.118:1883).

Changes:
- Added MQTT_PUBLIC_BROKER_URL to docker-compose.yml environment section
- Fixed .env to use proper format: mqtt://192.168.10.118:1883

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-01 20:53:08 +00:00
7ba3f398a8 Rename container from location-tracker-app to location-tracker
Simplified container naming for consistency.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-30 22:15:34 +00:00
f6b768a9f0 Add public directory volume mount to docker-compose
Mount public directory to make static files accessible in the container.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-30 21:11:09 +00:00
0d3b6d5997 Fix MQTT_BROKER_URL to use .env variable in docker-compose
Changed hardcoded MQTT_BROKER_URL to read from .env file with fallback to mqtt://mosquitto:1883. This allows using external MQTT brokers like mqtt://tracking.unixweb.de:1883 by simply updating the .env file.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-29 13:57:21 +00:00
843e93a274 first commit 2025-11-24 16:30:37 +00:00