One-command installation for supOS ecosystem with web-based orchestration.
Warning
Not ready for production-use, only for development.
Important
This is a drop-in reimagining of supOS-CE.
Industry suffers from "data spaghetti"—legacy systems don't fit Industry 4.0 standards. Unified Namespace offers solutions through open tools, but fragmented deployment creates friction. Industry won't adopt scattered services that need separate maintenance.
Why platforms win: Linux and Nextcloud succeeded as foundations where apps live together. Complexity managed once, not per service.
This project: Makes supOS installation work like Nextcloud All-in-One. Single command installs core, web UI manages lifecycle.
docker run -d \
--name supos-bedrock \
--restart always \
-p 8080:8080 \
-v /var/run/docker.sock:/var/run/docker.sock \
-v /volumes/supos/data:/volumes/supos/data \
-e HOST_IPS="$(hostname -I)" \
leekaize/supos-bedrock:latestThen access through web browser: http://YOUR_SERVER_IP:8080
- Docker 20.10+
- 4GB RAM minimum
- Ports 8080 and 8088 available
- Setup wizard → Zero terminal config, admin created via UI
- Modular apps → Install Grafana, MinIO, ELK and other optional apps post-deployment
- Integrated app store → Add capabilities without reinstall
- One-click updates → Version management from UI
- Automated backups → Database exports + config snapshots
- Single Docker command to run on both amd64 & arm64
- GUI for first-run setup and installation
- System Check: Verify and suggest actions on volume, IP/domain and port.
- Admin Account: Set custom username, password and email. Used for supOS frontend and keycloak.
- Select Apps: Optional containers can be installed through GUI.
- Installation Logs: Show stages of installation with detailed logs.
- GUI for orchestrator interface
- Redirect to Keycloak for access
- Container version update recommendations
- Optional containers install/uninstall
- Backup/restore functionality
- Fix Bugs Listed in GitHub Issue
- Implement proper disable/block for default admin, necessary for security.
- Full-featured Backup/Restore
- Backup system/containers config
- supOS-bedrock container update
- Establish standards
- APIs
- Set of files needed for each containers
- Implement within supOS-frontend
- Show update notifications through APIs
- Access orchestrator through homepage menu
What supOS-bedrock adds on top of supOS-CE:
Orchestrator Layer (New):
- Docker-in-Docker: Mounts
/var/run/docker.sockto control host Docker daemon - Flask backend (Python 3.12): Generates dynamic Compose commands, streams installation logs via polling API
- React frontend (Node.js 20): Setup wizard, container management UI, version comparison
- Multi-stage build: Compiles React to static assets, embeds workspace (scripts, compose files, configs)
Installation Workflow (Replaces manual steps):
- Automated system checks: Volume paths, port availability, IP detection
- Dynamic profile selection:
--profile grafana,--profile minio,--profile elkgenerated based on UI selections - Non-interactive mode:
bin/install.sh --non-interactivecalled by orchestrator with pre-configured.env - Real-time log streaming: Frontend polls
/api/install/logsevery 2 seconds during installation
Version Management (New):
builds.yamlmanifest: Defines recommended versions for each service- GitHub integration: Orchestrator fetches manifest on startup
- Update detection: Compares running container versions against manifest, surfaces in UI
- One-click updates: Executes
docker compose pull+up -dfor selected services
Backup System (New):
- Borg Backup integration: Incremental snapshots with compression
- Configurable paths: UI-driven backup directory selection
- Restore capability: Point-in-time recovery from snapshots
Important
Recommended to use or refer to automated tasks in .vscode/.
Run orchestrator locally:
cd orchestrator
pip install -r requirements.txt
cd frontend && npm install && npm run build && cd ..
python app.py
# Access http://localhost:8080Build image:
docker build -t supos-bedrock:dev .Key files:
orchestrator/routes/installation.py- Installation workflow, log streamingorchestrator/routes/containers.py- Container management, updatesbuilds.yaml- Version manifestbin/install.sh- Core installation (now supports--non-interactive)docker-compose-xxxx.yml- Service definitions with profiles