#Mobile app keeps getting revoked

1 messages · Page 1 of 1 (latest)

tropic mortarBOT
#

Thanks for opening a support thread!
Please include the following so we can help:

Required Information

• Tracearr version
• Environment (Docker, LXC, Unraid, etc.)
• Docker compose file
• Logs (pastebin.com) or screenshots

Describe The Issue

• Expected behavior
• Actual behavior
• Steps to reproduce

Read The Docs

Docs · Logs · FAQ

low warren
#

Have you tried updating @deft ingot

deft ingot
#

Not yet after current version. i did update from beta to current version about 3 weeks ago (or 2 weeks im not sure)

#

But i can update again and keep an eye on it see if it happens again

deft ingot
#

Yeah i dont always update when new versions come out ngl

#

Current version i updated to 02-28-2026

low warren
deft ingot
#

But i just updated to the newest version and ill keep an eye on it and come back if it happens again.

low warren
#

Any bug report on a previous version will generally always get the "you should update" response

deft ingot
#

Alright noted

sudden loom
#

that compose file :/

low warren
#

Yeah what

#

First off - you did not prune any secrets @deft ingot

#

But also image: postgres:16-alpine is not from any compose

#

nor is it correct

#

nor will it work correctly without a good bit of work

#

and even with that - itll still probably be wrong

#

I would be shocked if any of Tracearr was working correctly tbh

sudden loom
low warren
#

services:
  postgres:
    image: postgres:16-alpine
    container_name: tracearr-postgres
    environment:
      POSTGRES_USER: tracearr
      POSTGRES_PASSWORD: NOTHIINGisSECUREwhenYOUpostITonTHEinternet
      POSTGRES_DB: tracearr
    volumes:
      
/docker/tracearr/data/postgres:/var/lib/postgresql/data
/docker/tracearr/logs:/var/log/postgresql
restart: unless-stopped
networks:
tracearr-network,
,
,

  redis:
    image: redis:7-alpine
    container_name: tracearr-redis
    volumes:
      
/docker/tracearr/data/redis:/data
  restart: unless-stopped
  networks:
tracearr-network,
,

  tracearr:
    image: ghcr.io/connorgallopo/tracearr:latest
    container_name: tracearr
    environment:
      DATABASE_URL: postgres://tracearr:TNOTHIINGisSECUREwhenYOUpostITonTHEinternet@postgres:5432/tracearr
      REDIS_URL: redis://redis:6379
      NODE_ENV: production
      LOG_LEVEL: info
      JWT_SECRET: NOTHIINGisSECUREwhenYOUpostITonTHEinternet
    ports:
      
"3000:3000"
  volumes:
/docker/tracearr/logs:/app/logs
depends_on:
postgres
redis,
,
restart: unless-stopped
networks:
tracearr-network,
,
,

networks:
  tracearr-network:
    driver: bridge
#

Here is your compose from above and i stripped your creds and deleted the old one.

deft ingot
#

Thankyou ill start over with my stack as you said

eternal grotto
#

Did redeploying resolve this? @deft ingot

deft ingot
eternal grotto
#

Update as in a container image update?

#

My app gets revoked daily it seems and it doesn’t reconnect unless I clear the device via UI and re-pair

low warren
#

There is an app update launching soon.

eternal grotto
#

Does the update contain something related this issue?