astroluma
Astroluma is a comprehensive home lab dashboard solution that can be deployed on Docker.
100K+
A powerful, self-hosted home lab dashboard built with the MERN stack.
Astroluma is a feature-rich, productivity oriented, user-friendly dashboard designed to help you manage multiple aspects of your daily tasks and services. Built with flexibility in mind, it allows you to control various features like task management, device monitoring, app integration, and real-time weather updates, all from a single platform. With its responsive design and dynamic configuration options, Astroluma offers a unique blend of customization, usability, and productivity.

Jan 21, 2025
Open Astroluma Compose and chose your preffered settings to generate your docker-compose.yml file.
Alternatively, create a docker-compose.yml similar to this:
version: '3.8'
services:
app:
image: sanjeet990/astroluma:latest
container_name: astroluma
##ports:
## - "8000:8000"
environment:
PORT: 8000
NODE_ENV: production
SECRET_KEY: a2c5f9a8b2d7e1a7f2c9c8d9b5f7a3d5
MONGODB_URI: mongodb://localhost:27017/astroluma
volumes:
- uploads_data:/app/storage/uploads
- uploads_apps:/app/storage/apps
depends_on:
- mongodb
restart: always
network_mode: host
mongodb:
image: mongo:6.0
container_name: astroluma_mongodb
ports:
- "27017:27017"
volumes:
- mongo_data:/data/db
restart: always
volumes:
mongo_data:
driver: local
uploads_data:
driver: local
If you're still unsure about creating your own config, please contact here.
docker-compose up -d
If using docker-compose-plugin:
docker compose up -d
Detailed installation doc: Installation Guide
FAQ list is continuously being updated here.
A big shoutout to the people/projects who made this project possible. Check the credits here.
This project is licensed under the GNU GENERAL PUBLIC LICENSE, Version 3, 29 June 2007.
Contributions are welcome! Please feel free to submit pull requests.
Maintained by @Sanjeet990
Content type
Image
Digest
sha256:db46aa49b…
Size
736.7 MB
Last updated
over 1 year ago
docker pull sanjeet990/astroluma:1.0.2