Reference
Quick reference for RavenmaskOS configuration and commands.
Reference Pages
| Page | Description |
|---|---|
| Environment Variables | All .env variables |
| Ports | Port allocations |
| Networks | Docker network config |
| URLs | Service URLs |
| CLI Cheatsheet | Common commands |
Quick Reference
Service URLs
| Service | URL |
|---|---|
| Traefik | https://traefik.ravenhelm.dev |
| Grafana | https://grafana.ravenhelm.dev |
| Zitadel | https://auth.ravenhelm.dev |
| GitLab | https://gitlab.ravenhelm.dev |
| n8n | https://n8n.ravenhelm.dev |
| Norns | https://norns.ravenhelm.dev |
| Langfuse | https://langfuse.ravenhelm.dev |
| Voice | https://voice.ravenhelm.dev |
| Home Assistant | https://ha.ravenhelm.dev |
| Status | https://status.ravenhelm.dev |
| Dashboard | https://dashboard.ravenhelm.dev |
Key Paths
| Path | Purpose |
|---|---|
~/ravenhelm/services/ | Docker Compose files |
~/ravenhelm/data/ | Persistent data |
~/ravenhelm/secrets/.env | Master secrets |
~/ravenhelm/scripts/ | Automation scripts |
~/ravenhelm/backups/ | Manual backups |
~/.config/restic/ | Backup configs |
Common Commands
# List containers
docker ps --format "table {{.Names}}\t{{.Status}}"
# View logs
docker logs -f <container>
# Restart service
docker restart <container>
# Full backup
source ~/.config/restic/homelab.env && restic backup ~/ravenhelm
# Database backup
docker exec postgres pg_dump -U ravenhelm -d ravenmaskos | gzip > backup.sql.gz