this post was submitted on 29 Nov 2025
71 points (98.6% liked)

Selfhosted

60253 readers
719 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

Detailed Rules Post

  1. Be civil.

  2. No spam.

  3. Posts are to be related to self-hosting.

  4. Don't duplicate the full text of your blog or readme if you're providing a link.

  5. Submission headline should match the article title.

  6. No trolling.

  7. Promotion posts require active participation, with an account that is at least 30 days old. F/LOSS without a paywall has exceptions, with requirements. See the rules link for details.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 3 years ago
MODERATORS
 

Hi everyone!

I've recently set up a NAS running TrueNAS Scale and learning about ZFS and associated machinery. ZFS has a pretty cool feature called snapshots, which allow for a kind of version control, but for the whole file system. I set up Tiered Snapshots, which seem to be working great!

To my surprise, there didn't seem to be an easy way to actually browse these snapshots. Yes, you can use "Previous Versions" on Windows, but I'm running Fedora at the moment, so that doesn't help. You can also access .zfs/snapshot/ at the root of the dataset, which is fine if you know exactly which snapshot you want, otherwise it seems a bit clunky. There is also httm, which is a "CLI Time Machine" I've yet to learn more about, but I was looking for something a bit more graphical / browser-based.

Thus, with much hacking and vibing, the proof-of-concept Timeship was born! It has a thousand limitations and compromises for now, so I'm mostly reaching out to see if there is any interest from others on this.

If you use tiered snapshots which happen to be named similar to mine, you can try it out like this:

docker run -p 8080:8080 -v /mnt/tank/your/dataset:/mnt/:ro ghcr.io/smilyorg/timeship

For now, it has a very simple file browser, it detects and shows snapshots via the aforementioned .zfs/snapshot/ directories, allows you to preview the file system and text files at different points in time, and allows you to download a file at any snapshot.

Of course, extending it to support different ways to see the history would be nice, image preview, diffs, downloading archives of multiple files or directories, supporting histories beyond ZFS (e.g. git or borg backups), the list could go on and on. I can't claim I'll have the time to implement any or all of those, but you gotta start somewhere :)

What do you think? Any ideas & comments very welcome!

you are viewing a single comment's thread
view the rest of the comments
[โ€“] mlunar@lemmy.world 1 points 7 months ago (1 children)

Hi! Thanks a lot for trying it out!

I manage all my apps via docker compose, so I'm actually less familiar with TrueNAS apps, so I'm happy that setup was quick :) Would you be interested in contributing a short guide on the setup?

When viewing a snapshot, highlight files (and possibly folders) that differ from the current state (deleted files in red, modified files in yellow, for example)

Yeah, I was thinking something along those lines as well. Maybe being able to "diff" between two snapshots as well, for example to see what was changed in a snapshot compared to its predecessor. Would be cool to have file diffs as well :)

Downloading entire folders, that would probably require timeship to zip them up beforehand, though.

Yeah, that would be nice too. I think archiving / zipping multiple files or folders on the fly is fairly straightforward in Go, it's just the matter of putting in the time to make it happen.

If you have any other ideas, let me know! Or open an issue directly :)

Some of the other things I was thinking of are just in the README roadmap, but I'll move them to issues soon enough I guess

[โ€“] Localhorst86@feddit.org 2 points 7 months ago (2 children)

Would you be interested in contributing a short guide on the setup?

I am not confident enough in my knowledge of TrueNAS apps myself to judge if my setup process is how you're supposed to do custom apps, tbh, so i'd rather not try to contribute a guide that could potentially have other users run into trouble ๐Ÿ˜…

[โ€“] mlunar@lemmy.world 1 points 6 months ago

Hehe, alright, no worries! If you change your mind the PRs are open :)