I'm using the latest version on Docker Compose it works fine .. but sometimes it wipes the credentials and checking the logs shows this message :
[custom-init] No custom files found, skipping...
**** Plex and/or Trakt.tv account info missing. Please manually run an initial sync via the following command on your docker host and restart the container when finished: ****
docker exec -it plextraktsync plextraktsync
[ls.io-init] done.
Adding them again with plextraktsync sync makes it work again
Keep in mind I have cron job that auto restart the container every hour to maintain the API operation with Trakt because Trakt kicks the app for long operation and starts to the block the API calls .. so restarting it every now ans then refreshes the connection with Trakt
But I don't know why sometimes the app totally resets and removes its configuration
This is my compose file, and I'm running on Unraid 7.2
services:
plextraktsync:
image: lscr.io/linuxserver-labs/plextraktsync:latest
container_name: plextraktsync-linuxserver-labs
environment:
- PUID=1000
- PGID=1000
- TZ=Asia/Riyadh
volumes:
- /path/to/appdata:/config
restart: unless-stopped
I'm using the latest version on Docker Compose it works fine .. but sometimes it wipes the credentials and checking the logs shows this message :
Adding them again with plextraktsync sync makes it work again
Keep in mind I have cron job that auto restart the container every hour to maintain the API operation with Trakt because Trakt kicks the app for long operation and starts to the block the API calls .. so restarting it every now ans then refreshes the connection with Trakt
But I don't know why sometimes the app totally resets and removes its configuration
This is my compose file, and I'm running on Unraid 7.2