Home Catalogus TeslaMate
Smart Home & Domotica

TeslaMate

Self-hosted data logger for your Tesla vehicle with detailed driving, battery, and charging analytics.

ARM64 & AMD64
Docker & Rootless Podman
100% Self-Hosted (Geen Lock-in)
RAM Profiel: Gemiddeld
Standaard Poort: Port 4000

Waarom deze configuratie?

Snelle Start (Standalone Docker Compose)

Onderstaand compose-fragment is direct te gebruiken in elke Docker- of Podman-omgeving:

services:
  teslamate:
    image: "teslamate/teslamate:latest"
    container_name: njorddeploy-teslamate
    restart: unless-stopped
    environment:
      - ENCRYPTION_KEY=supersecretencryptionkey123456789
      - DATABASE_USER=teslamate
      - DATABASE_PASS=secretpassword
      - DATABASE_NAME=teslamate
      - DATABASE_HOST=teslamate_db
      - MQTT_HOST=mosquitto
    ports:
      - "4000:4000"
    depends_on:
      - teslamate_db
    networks:
      - njorddeploy_net

  teslamate_db:
    image: postgres:16-alpine
    container_name: njorddeploy-teslamate-db
    restart: unless-stopped
    environment:
      - POSTGRES_USER=teslamate
      - POSTGRES_PASSWORD=secretpassword
      - POSTGRES_DB=teslamate
    volumes:
      - "./data/teslamate/db:/var/lib/postgresql/data"
    networks:
      - njorddeploy_net

networks:
  njorddeploy_net:

Start de service direct via de commandline: docker compose up -d

Configuratie & Omgevingsvariabelen

Belangrijkste configuratieparameters en standaardwaarden uit de NjordDeploy component-sjabloon:

Variable Default Value Description
TESLAMATE_WEB_PORT 4000 TeslaMate web interface port.

Ecosysteem & Bedrijfsintegratie

Eenvoudig beheren via NjordDeploy

Installeer, bewaak en update deze service met 1 klik op uw eigen Raspberry Pi of Proxmox server via de NjordDeploy Configurator.