
SyncYomi
SyncYomi is an open-source project designed to offer a seamless synchronization experience for your Tachiyomi manga reading progress and library across multiple devices. This server can be self-hosted, allowing you to sync your Tachiyomi library effortlessly.


Key features
- User-friendly and mobile-optimized web UI.
- Developed using Go and Vue, making SyncYomi lightweight and versatile, suitable for various platforms (Linux, FreeBSD, Windows, macOS) and architectures (e.g., x86, ARM).
- Excellent container support (Docker, k8s/Kubernetes).
- Compatible with both PostgreSQL and SQLite database engines.
- Notifications supported via Discord, Telegram, and Notifiarr.
- Base path/subfolder (and subdomain) support for easy reverse-proxy integration.
Installation
Head to releases and download the binary for your operating system. Then, run the binary.
Docker compose
docker-compose for syncyomi. Modify accordingly if running with unRAID or setting up with Portainer.
- Logging is optional
- Host port mapping might need to be changed to not collide with other apps
- Change
BASE_DOCKER_DATA_PATH to match your setup. Can be simply ./data
- Set custom network if needed
- You may need to update the host address to 0.0.0.0 if you are running with podman
Create docker-compose.yml and add the following. If you have a existing setup change to fit that.
version: "3.9"
services:
syncyomi:
container_name: syncyomi
image: ghcr.io/syncyomi/syncyomi:latest
restart: unless-stopped
environment:
- TZ=${TZ}
user: 1000:1000
volumes:
- ${BASE_DOCKER_DATA_PATH}/syncyomi/config:/config
ports:
- 8282:8282
Then start with
docker compose up -d
Windows
Linux generic
Download the latest release, or download the source code and build it yourself using make build.
wget $(curl -s https://api.github.com/repos/SyncYomi/SyncYomi/releases/latest | grep download | grep linux_x86_64 | cut -d\" -f4)
Systemd (Recommended)
On Linux-based systems, it's recommended to run SyncYomi as a service with auto-restarting capabilities to ensure minimal downtime. The most common approach is to use systemd.
You will need to create a service file in /etc/systemd/system/ called syncyomi.service.
touch /etc/systemd/system/syncyomi@.service
Then place the following content inside the file (e.g. via nano/vim/ed):
[Unit]
Description=SyncYomi service for %i
After=syslog.target network-online.target
[Service]
Type=simple
User=%i
Group=%i
ExecStart=/usr/bin/syncyomi --config=/home/%i/.config/syncyomi/
[Install]
WantedBy=multi-user.target
Start the service. Enable will make it startup on reboot.
systemctl enable -q --now --user syncyomi@$USER
By default, the configuration is set to listen on 127.0.0.1. It is highly recommended to use a reverse proxy like caddy, nginx or traefik.
If you are not running a reverse proxy change host in the config.toml to 0.0.0.0.
Usage
Once the service has run once you should have a handful of files in the specified running directory.
If you are running behind a reverse proxy with a sub-directory be sure to update the baseUrl value, and in your proxy rewrite omit that suffix. The following is an nginx example.
location /SyncYomi/ {
proxy_pass http://localhost:8282/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
}
You may need to restart the service once the config file has been updated.
With the service running and accessible navigate to Settings > API Keys and generate a new API key. This will be used for your Tachiyomi clients.
Install The App
Find the latest release of the modified tachiyomi app on the Discord. Backup your existing Tachiyomi environment before installing the modified version of the app.
Install the modified Tachiyomi client and navigate to Settings > Backup and Sync where you should find a Sync header.
Enter both your Host (ie www.mydomain.tld/SyncYomi/ or sync.mydomain.tld) and an API Key.
Syncronization presently only happens on a fixed interval, so if you are hotswapping devices be sure to manually initiate a sync in the backup and sync settings on the device you were reading on, then do the same once it has completed on the next device.
Come join us on Discord!