Skip to content

Releases: cboxdk/websocket-server

v1.0.0 - Database Storage

17 Jan 14:05

Choose a tag to compare

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 /metrics endpoint for monitoring
  • Health Checks - Docker/Kubernetes-ready /health endpoint
  • 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.