Releases: cboxdk/websocket-server
Releases · cboxdk/websocket-server
v1.0.0 - Database Storage
What's New
First stable release with database-backed app storage.
Features
- Multi-App Support - Manage multiple WebSocket applications via REST API
- Database Storage - SQLite by default, supports MySQL/PostgreSQL
- Prometheus Metrics - Built-in
/metricsendpoint for monitoring - Health Checks - Docker/Kubernetes-ready
/healthendpoint - Auto Migrations - Database migrations run automatically on container startup
Docker
docker run -d \
-p 80:80 \
-p 8080:8080 \
-e APP_KEY=base64:your-key-here \
-e API_ADMIN_TOKEN=your-secret-token \
-v websocket-data:/var/www/html/database \
ghcr.io/cboxdk/websocket-server:v1.0.0
Persistence
Mount /var/www/html/database to persist app configurations:
| Path | Description |
|---|---|
/var/www/html/database |
SQLite database (apps, sessions, cache) |
Full Changelog
See README.md for complete documentation.