⚠️ Pre-release - Not for Production Use
This is a beta release for testing the new multi-database backend support. Do not upgrade production installations to this version.
What's New in v3.0.0
Database Backend Options
MeshMonitor now supports three database backends:
- SQLite (default) - Simple file-based database, no additional setup required
- PostgreSQL - Scalable relational database for larger deployments
- MySQL / MariaDB - Alternative scalable database option
Changes
- feat: Add PostgreSQL support as optional database backend (#1404)
- feat: Add MySQL/MariaDB support as database backend (#1405)
Configuration
To use PostgreSQL or MySQL, set the DATABASE_URL environment variable:
# PostgreSQL
DATABASE_URL=postgres://user:password@hostname:5432/meshmonitor
# MySQL/MariaDB
DATABASE_URL=mysql://user:password@hostname:3306/meshmonitorSQLite remains the default when no DATABASE_URL is set.
Migration
A migration tool is included to migrate existing SQLite databases:
npx tsx src/cli/migrate-db.ts \
--from sqlite:/data/meshmonitor.db \
--to postgres://user:pass@host/meshmonitor🤖 Generated with Claude Code
Proxmox LXC Template
This release includes a Proxmox-compatible LXC container template for MeshMonitor.
Installation
- Download the
.tar.gztemplate file - Verify the SHA256 checksum (optional but recommended)
- Upload to your Proxmox server:
scp meshmonitor-*.tar.gz root@proxmox:/var/lib/vz/template/cache/ - Create a new LXC container from the template via Proxmox web UI
- Configure
/etc/meshmonitor/meshmonitor.envwith your Meshtastic node IP - Start the container and access the web UI on port 8080
Documentation
See the Proxmox LXC Deployment Guide for detailed instructions.
Limitations
- Auto-upgrade feature is not supported in LXC deployments
- Manual updates required (download new template for each version)
- Community-supported (Docker remains the primary deployment method)
🚀 MeshMonitor v3.0.0-beta1
📦 Installation
Docker (recommended):
docker run -d \
--name meshmonitor \
-p 8080:3001 \
-v meshmonitor-data:/data \
ghcr.io/Yeraze/meshmonitor:3.0.0-beta1🧪 Testing
✅ All tests passed
✅ TypeScript checks passed
✅ Docker images built for linux/amd64, linux/arm64, linux/arm/v7
📋 Changes
See commit history for detailed changes.