Boxento v1.0.0 - Docker Support Release 🐳
First official release of Boxento with Docker support! Now you can run your personal dashboard with a single command.
🚀 Quick Start
# Pull and run
docker run -d -p 5173:5173 --name boxento ghcr.io/sushaantu/boxento:1.0.0🌐 Accessing Your Dashboard
The URL depends on your Docker environment:
- Docker Desktop: http://localhost:5173
- OrbStack: Look for the URL in your OrbStack dashboard (e.g., https://boxento.orb.local)
- Other environments: Check your Docker environment's URL convention
💡 Tip: When using OrbStack, the URL is automatically generated and shown in the OrbStack dashboard. No additional configuration needed!
🐋 Docker Features
- Multi-platform support (amd64, arm64)
- Health checks included
- Production-ready configuration
- Native support for Docker Desktop and OrbStack
📦 Container Options
Using Docker Compose
services:
boxento:
image: ghcr.io/sushaantu/boxento:1.0.0
container_name: boxento
restart: unless-stopped
ports:
- "XXXX:XXXX"
environment:
- NODE_ENV=production
- VITE_ALLOWED_HOSTS=XXXXXXEnvironment Variables
Only necessary if you want to use auth or use widgets like Google Calendar
VITE_ALLOWED_HOSTS- Configure allowed domains (automatically configured for common Docker environments)NODE_ENV- Set environment (defaults to production)
🏷️ Available Tags
v1.0.0- This stable releaselatest- Latest development buildsha-XXXXXX- Specific commit builds
📝 Notes
- First stable release with Docker support
- Automated builds via GitHub Actions
- Container images hosted on GitHub Container Registry (ghcr.io)
- Built-in support for popular Docker development environments