| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Reitti is a self-hosted personal location tracking and analysis application that helps you understand your movement patterns and significant places. The name comes from Finnish, meaning "route" or "path".
The main view — interactive timeline on the left, live map on the right.
Live location sharing — follow family and friends on a single map, across instances, or via magic links.
Reitti lets you share your live location with others — and see theirs in return.
See the Live Sharing Guide for setup details.
The workbench — drag misplaced GPS points to their correct location and stitch data from different devices together.
Reitti supports tracking multiple devices per user. Data ingested into the default device is automatically stitched together into a single personal timeline. For other devices, you can use the workbench to manually stitch their data by selecting the device and a time range — so you never lose a moment, even when you switch between your phone, a dedicated GPS logger, or other sources.
The workbench also lets you clean up your data directly on the map:
See the Devices Guide for setup details.
Custom map styles — the same location rendered with different styles.
You are no longer locked into a single look. Reitti lets you fully customize how your map appears:
See the Map Styles Guide for details.
Photo integration — photos from Immich appear on your timeline at the locations where they were taken.
Statistics — distance charts, top places, and transport-mode breakdowns.
Get insights into your movement patterns with summary statistics and visualizations.
The fastest way to try Reitti is with Docker Compose:
mkdir reitti && cd reitti
wget https://raw.githubusercontent.com/dedicatedcode/reitti/refs/heads/main/docker-compose.yml
docker compose up -dThen open http://localhost:8080. On first login you'll be prompted to set a new admin password. A default API token is created automatically for you, so you can jump straight into connecting your devices.
ARM64 users (Apple Silicon, etc.): Until postgis/docker-postgis#216 is resolved, change the PostGIS image in the compose file to imresamu/postgis:17-3.5-alpine.
| Source | Type | Docs |
|---|---|---|
| GPX files | File upload | Guide |
| Google Takeout JSON | File upload | Guide |
| Google Timeline Export | File upload | Guide |
| GeoJSON | File upload | Guide |
| OwnTracks | Real-time | Guide |
| GPSLogger | Real-time | Guide |
| Overland | Real-time | Guide |
| Home Assistant | Real-time | Guide |
| REST API | Custom | Guide |
Reitti publishes several Docker image tags to serve different needs:
| Tag | Stability | Use Case |
|---|---|---|
| latest | Stable | Points to the most recent stable release. Use this if you want updates as soon as they're published and don't mind occasionally pulling a new major version. |
| 5 | Stable | Points to the latest release within the 5.x series. You get bug fixes and minor features without the risk of a major version jump — a good balance of freshness and stability. |
| 5.0.2 | Stable | A pinned specific release. Use this in production when you need reproducible deployments and full control over when you upgrade. |
| develop | Bleeding edge | Rebuilt on every push to main. Includes features and fixes that haven't been released yet. Use this if you want to test upcoming changes or contribute — but expect occasional rough edges. |
| next | Alpha | Represents the next major version in development. Do not use in production — the database schema may change in ways that aren't backward-compatible, which can corrupt or lose your data. Only for testing the next major release cycle. |
Recommendation: For most self-hosters we recommend using the major-version tag (e.g. reitti:5). It gives you bug fixes and new features within the current major version automatically, while protecting you from breaking changes that come with a new major release. Pin a full version (e.g. reitti:5.0.2) if you need strict reproducibility — for example, in automated deployments or when you want to upgrade manually after testing.
| Variable | Description | Default |
|---|---|---|
| POSTGIS_HOST | PostgreSQL host | postgis |
| POSTGIS_PORT | PostgreSQL port | 5432 |
| POSTGIS_DB | PostgreSQL database name | reittidb |
| POSTGIS_USER | PostgreSQL user | reitti |
| POSTGIS_PASSWORD | PostgreSQL password | reitti |
| REDIS_HOST | Redis host | redis |
| REDIS_PORT | Redis port | 6379 |
| REDIS_PASSWORD | Redis password | — |
| OIDC_ENABLED | Enable OpenID Connect login | false |
| OIDC_ISSUER_URI | OIDC provider issuer URI | — |
| OIDC_CLIENT_ID | OIDC client ID | — |
| OIDC_CLIENT_SECRET | OIDC client secret | — |
| BASE_PATH | Serve Reitti under a sub-path | / |
| DANGEROUS_LIFE | Enable data-reset features (use with caution) | false |
| PROCESSING_BATCH_SIZE | Geo points processed per batch | 1000 |
| SPATIAL_COVERAGE | Enable the spatial coverage feature | false |
For the full list of environment variables, deployment options, and OIDC setup, see the Infrastructure Documentation.
Contributions are welcome! Please feel free to open a Pull Request.
Get support:
We use Weblate for translations. Help us add your language!
This project is licensed under the GNU Affero General Public License v3.0 (AGPL-3.0). See the LICENSE file for details.
| Back | FazBrowse Home | New Git URL |