Skip to main content

Reference

Quick reference for RavenmaskOS configuration and commands.


Reference Pages

PageDescription
Environment VariablesAll .env variables
PortsPort allocations
NetworksDocker network config
URLsService URLs
CLI CheatsheetCommon commands

Quick Reference

Service URLs

ServiceURL
Traefikhttps://traefik.ravenhelm.dev
Grafanahttps://grafana.ravenhelm.dev
Zitadelhttps://auth.ravenhelm.dev
GitLabhttps://gitlab.ravenhelm.dev
n8nhttps://n8n.ravenhelm.dev
Nornshttps://norns.ravenhelm.dev
Langfusehttps://langfuse.ravenhelm.dev
Voicehttps://voice.ravenhelm.dev
Home Assistanthttps://ha.ravenhelm.dev
Statushttps://status.ravenhelm.dev
Dashboardhttps://dashboard.ravenhelm.dev

Key Paths

PathPurpose
~/ravenhelm/services/Docker Compose files
~/ravenhelm/data/Persistent data
~/ravenhelm/secrets/.envMaster 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