The Docker image is correct, but it looks like you have a volume mount that's overwriting the
app files with an old version.
Check your container configuration for any volume mounts pointing to /app or any subdirectory
of /app.
In TrueNAS, look at your app's storage configuration. You should only have volumes for:
- /data (for persistent data like Chrome profile, settings, EPG cache)
You should NOT have a volume mount for /app - that would overwrite the application code with
old files from your host.
To fix:
- Stop the app
- Edit the app configuration
- Remove any volume/host path mapping to /app
- Keep only the /data volume mapping
- Recreate/start the app
Can you share a screenshot or list of your volume mounts for this container?


