Traccar logo

Traccar

Open source GPS tracking system

Alternative to: life360, find my


Traccar is an open source GPS tracking platform that supports over 200 GPS protocols and 2000+ tracking device models. It offers real-time position monitoring, geofencing, driver behavior reports, and email/SMS alerts through a self-hosted web dashboard.

Traccar Docker Compose example

Self-host Traccar on your own server, homelab, or VPS starting from this Docker Compose example. It runs Traccar in Docker containers using the official traccar/traccar:latest image, with persistent volumes and automatic restarts preconfigured. Review the environment variables and adjust them to your setup, save the file as compose.yml (or docker-compose.yml), and start the stack with docker compose up -d.

services:
  traccar:
    image: traccar/traccar:latest
    restart: unless-stopped
    volumes:
      - data:/opt/traccar/data
      - logs:/opt/traccar/logs

volumes:
  data:
  logs:

Prefer a managed setup? WinterFlow installs, configures, and updates Traccar for you using this same Docker Compose configuration.