Update Guide
Ting Reader regularly releases new versions to fix bugs and add new features. You can choose the corresponding update method based on your deployment.
1. FPK Update
Tip: For Fygo NAS users. No need to uninstall the old version — simply install over it to keep your data.
Step 1: Download the latest package
Go to the Download Center to download the latest FPK package.
Step 2: Manual install
Open the App Center on your Fygo NAS and click the "Manual Install" button in the lower-left corner.
Step 3: Import and update
Select the downloaded new FPK file to import. The system will automatically detect this as an update — just follow the prompts to complete the installation.
2. Docker Update
For all users who deploy with Docker (including Synology, QNAP, Linux servers, etc.).
Option 1: Docker Compose (Recommended)
Run the following command in the directory containing docker-compose.yml (choose one):
Docker Compose V2 (new)
docker compose pull && docker compose up -dDocker Compose V1 (legacy)
docker-compose pull && docker-compose up -dThis command pulls the latest image and recreates the container — your data will not be lost (as long as you mapped a volume).
Option 2: Docker CLI (General)
If you started the container with docker run, follow these steps:
- Stop and remove the old container:
docker rm -f ting-reader - Pull the latest image:
docker pull dqsq2e2/ting-reader:latest - Run the start command again (using your previous parameters).
Option 3: NAS GUI (Synology/QNAP)
1. Find ting-reader in the "Image" list and click "Download/Pull" to get the latest version.
2. After the download finishes, stop and "Reset/Clear" the old container (keep the data volume configuration).
3. Restart the container.