Environment Variables
Note
Work in Progress
This documentation is being written. Check back soon for detailed instructions.
Overview
Environment variables can override configuration file settings. Useful for Docker deployments.
Available Variables
| Variable | Default | Description |
|---|---|---|
NORRI_PORT | 8096 | HTTP server port |
NORRI_DATA_DIR | /config | Data directory path |
NORRI_LOG_LEVEL | info | Logging level |
TZ | UTC | Timezone |
Database
| Variable | Default | Description |
|---|---|---|
NORRI_DB_HOST | localhost | PostgreSQL host |
NORRI_DB_PORT | 5432 | PostgreSQL port |
NORRI_DB_NAME | norri | Database name |
NORRI_DB_USER | norri | Database user |
NORRI_DB_PASS | (none) | Database password |
Docker Compose Example
environment:
- TZ=Europe/London
- NORRI_LOG_LEVEL=debug
- NORRI_DB_HOST=postgres
- NORRI_DB_PASS=your-password-here