this post was submitted on 17 Mar 2026
13 points (84.2% liked)

Selfhosted

58273 readers
810 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:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

  7. No low-effort posts. This is subjective and will largely be determined by the community member reports.

Resources:

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

Questions? DM the mods!

founded 2 years ago
MODERATORS
 

Disclaimer: I am only a user, not the developer, and I am not in their team :)

I found this backup solution a few days ago and I already love it! Time to share!

Vykar is a new backup solution in an early state, that is inspired by Borg and Restic. It offers a fast and encrypted backup solution with an easy YAML formatted configuration. It can back up to a local repository, S3, its own backup server or all of them. Deduplication and snapshots are integrated, in daemon mode it has a built-in scheduler too.

Run it via the provided binaries, the GUI or use it in Docker. Recovery can be easily done via the CLI or starting a local web server to browse the files or access them via WebDAV.

Example YAML configuration (for showing its simplicity), full docs here

# vykar configuration file
# Minimal required configuration.
# Full reference: https://vykar.borgbase.com/configuration

 repositories:
  - label: "Backupserver"
    url: "https://backup.myserver.com/"
    access_token: "secure-token-here"
 sources:
   - label: "immich-homeserver"
     path: "/docker/immich/data"
     exclude:
       - "backup"
       - "thumbs"
       - "encoded-video"

   - label: "media-homeserver"
     paths:
       - "/backup/media/books"
       - "/backup/media/music"
       - "/backup/scripts"
       - "/backup/media/video"
     exclude:
       - "cache"
       - "tmp"


#
***
Common optional settings (uncomment as needed)
***

 encryption:
  # mode: "auto"                     # Default — benchmark at init and persist chosen mode
   mode: "aes256gcm"

# 

 retention:
   keep_last: 3 #keeps the last 3 snapshots
#   keep_daily: 7
#   keep_weekly: 4

# https://vykar.borgbase.com/configuration#compression

 compression:
   algorithm: zstd
   zstd_level: 5

# https://vykar.borgbase.com/configuration#exclude-patterns

 exclude_patterns:
   - "*.tmp"
   - "*.bak"
   - "*.log"
   - ".pnpm-store"
   - "node_modules"
   - "postgres"
   - ".Trash-1000"
   - "$Recycle.Bin"
   - "System Volume Information"
   - ".DS_Store"

# schedule:
#   enabled: true
#   every: "24h"

you are viewing a single comment's thread
view the rest of the comments
[–] prenatal_confusion@feddit.org 1 points 1 week ago

I feel that the bar could be lower for less hardcore people ;)