Gain a deeper understanding of your life's journey by transforming raw GPS data into a rich, visual timeline. This self-hosted application puts you in complete control of your location data, ensuring your privacy is never compromised. It automatically analyzes your movements to identify significant places, detect visits, and track trips, even recognizing whether you were walking, cycling, or driving.
Key capabilities include:
services:
reitti:
image: dedicatedcode/reitti:latest
container_name: reitti
restart: unless-stopped
ports:
- "8080:8080"
environment:
- DATABASE_URL=postgres://${DB_USER}:${DB_PASSWORD}@db:5432/${DB_NAME}
- SECRET_KEY=${SECRET_KEY}
volumes:
- ./reitti-data:/app/data
depends_on:
- db
db:
image: postgres:15-alpine
container_name: reitti_db
restart: unless-stopped
environment:
- POSTGRES_USER=${DB_USER}
- POSTGRES_PASSWORD=${DB_PASSWORD}
- POSTGRES_DB=${DB_NAME}
volumes:
- ./db-data:/var/lib/postgresql/data
DB_USER=reitti_user
DB_PASSWORD=super_secret_database_password
DB_NAME=reitti_db
SECRET_KEY=your_super_secret_key_here
Auto-fetched 2 minutes ago
Auto-fetched 2 minutes ago