tidemarq runs entirely on your own hardware. No cloud account, no remote agents, no proprietary folder structure — just a clean web UI and complete control of your files.
Built to handle the full range of directory sync scenarios — from simple scheduled backups to live bidirectional replication with conflict management.
One-way backup preserves everything at the destination. One-way mirror reflects the source exactly, moving deleted files to quarantine. Two-way sync propagates changes in both directions.
When the same file changes on both sides, tidemarq detects it. Resolve automatically with strategies like newest-wins or source-wins — or route each conflict to the manual review queue in the UI.
Before every overwrite, tidemarq snapshots the existing file. Browse the full history per file from the web UI and restore any previous version in one click, with configurable retention.
Connect to SMB shares and SFTP servers as source or destination. Credentials are stored encrypted at rest using AES-256-GCM — no plaintext in config files. Connectivity can be tested from the Mounts UI before use.
Every sync event, user action, and error is written to an append-only audit log. Search and filter by job, event type, or date range directly in the UI. Export as CSV or JSON at any time.
Rolling Adler-32 checksums combined with BLAKE3 strong hashing mean only changed byte regions are written — not whole files. Local syncs are fast even for large files, with automatic fallback to full streaming for network mounts.
tidemarq connects to destinations over standard protocols — SMB and SFTP. There is no software to install on the remote side and no persistent daemon to maintain. If you can reach a share or an SSH endpoint, you can sync to it.
There are no hidden metadata directories scattered across your storage, no index databases living alongside your files. tidemarq keeps its own state in a single data directory. Your file trees stay clean and readable by any other tool.
There are no cloud services, no telemetry, and no registration step. tidemarq makes zero outbound connections except to the mount targets you explicitly configure. Your file names, paths, and contents never leave your infrastructure.
docker compose up --build starts the full stack. TLS certificates and admin credentials are auto-generated on first start. There is no separate install step, no certificate authority to configure, and no manual database initialisation.
tidemarq is distributed as a Docker Compose stack. There's no package to install and no database to set up manually.
Download tidemarq.yaml and set your data directory and admin password
Run docker compose up --build — TLS and admin credentials are generated automatically
Browse to https://localhost:8717 and log in with the credentials shown in the startup log
services: tidemarq: build: . ports: - "8716:8716" # HTTP → redirects to HTTPS - "8717:8717" # HTTPS — main UI and API volumes: - ./data:/data # persistent state - ./tidemarq.yaml:/etc/tidemarq/tidemarq.yaml:ro