You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Installing TESLAMATE
I'm in the Docker-compose.yml step to copy and paste: see below
I changed the username and password to mine and keep getting the error message.
**"✘ grafana Error Head "https://registry-1.docker.io/v2/teslamate/grafana/manifests/latest": un... 0.5s
✘ mosquitto Error context canceled 0.5s
✘ teslamate Error context canceled 0.5s
✘ database Error context canceled 0.5s
Error response from daemon: Head "https://registry-1.docker.io/v2/teslamate/grafana/manifests/latest": unauthorized: incorrect username or password"**
It still gives me the error when i keep everything as is.
Can i get some help??
services:
teslamate:
image: teslamate/teslamate:latest
restart: always
environment:
ENCRYPTION_KEY=secretkey #replace with a secure key to encrypt your Tesla API tokens
DATABASE_USER=teslamate
DATABASE_PASS=password #insert your secure database password!
DATABASE_NAME=teslamate
DATABASE_HOST=database
MQTT_HOST=mosquitto
ports:
volumes:
cap_drop:
database:
image: postgres:17
restart: always
environment:
POSTGRES_USER=teslamate
POSTGRES_PASSWORD=password #insert your secure database password!
POSTGRES_DB=teslamate
volumes:
grafana:
image: teslamate/grafana:latest
restart: always
environment:
DATABASE_USER=teslamate
DATABASE_PASS=password #insert your secure database password!
DATABASE_NAME=teslamate
DATABASE_HOST=database
ports:
volumes:
mosquitto:
image: eclipse-mosquitto:2
restart: always
command: mosquitto -c /mosquitto-no-auth.conf
ports:
- 1883:1883
volumes:
mosquitto-conf:/mosquitto/config
mosquitto-data:/mosquitto/data
volumes:
teslamate-db:
teslamate-grafana-data:
mosquitto-conf:
mosquitto-data:
Beta Was this translation helpful? Give feedback.
All reactions