For starting out I would suggest Longhorn, I’ve had several issues with it but maybe they’ve been fixed. I also used Rook Ceph which is overkill but neat to play with. Techno Tim has several videos on Kubernetes including setting up a cluster (he has an ansible playbook for it) as well as how to set up Longhorn.
- 2 Posts
- 133 Comments
I made my own solution since I wasn’t impressed by projects I had found. There’s two parts, the backup image and the restore image.
I use it like so:
services: restore_sabnzbd: image: untouchedwagons/simple-restore:1.0.5 container_name: restore_sabnzbd restart: no environment: - BACKUP_APPEND_DIRECTORY=/docker/production/sabnzbd - BACKUP_BASE_NAME=sabnzbd - FORCE_OWNERSHIP=1000:1000 volumes: - sabnzbd:/data - /mnt/tank/Media/Backups:/backups sabnzbd: image: ghcr.io/onedr0p/sabnzbd:4 container_name: sabnzbd restart: unless-stopped user: 1000:1000 volumes: - sabnzbd:/config - /mnt/tank/Media/Usenet:/mnt/data/Usenet depends_on: restore_sabnzbd: condition: service_completed_successfully networks: - traefik_default backup_sabnzbd: image: untouchedwagons/simple-backup:1.1.0 container_name: backup_sabnzbd restart: unless-stopped environment: TZ: "America/Toronto" BACKUP_APPEND_DIRECTORY: "/docker/production/sabnzbd" BACKUP_BASE_NAME: "sabnzbd" BACKUP_RETENTION: "24" BACKUP_FREQUENCY: "0 0 * * *" volumes: - sabnzbd:/data:ro - /mnt/tank/Media/Backups:/backups networks: traefik_default: external: true volumes: sabnzbd:
The restore container looks for a file called RESTORED in
/data
and if one isn’t found it’ll try to restore the latest backup (if available) and then create a RESTORED file. The backup container ignores this file during backup.
UntouchedWagons@lemmy.cato cats@lemmy.world•Meowdy from an average American catEnglish151·8 months agoMeowdy purrdnurr
UntouchedWagons@lemmy.cato Piracy@lemmy.ml•Looking for a "Limewire" meets "Lidarr"English4·11 months agoCheck out Soulseek
UntouchedWagons@lemmy.cato Linux@lemmy.ml•People doing the 30 days linux Challenge are having several problems because of Mint's old packages and technology. Why people still recommend it when there is Fedora and Opensuse with KDE and Gnome?English5·11 months agoI think it started with Linus and Luke of Linus Tech Tips doing a 30 day linux challenge to see what it’s like daily driving linix. Jeff of Craft Computing did one recently as well.
Zsh + oh-my-zsh
UntouchedWagons@lemmy.cato Linux@lemmy.ml•What is the best model of used ThinkPad to purchase?English3·1 year agoI’ve got a t14 and it works perfectly under fedora 40. My only complaint is that the Left Ctrl key isn’t in the corner.
UntouchedWagons@lemmy.cato Linux@lemmy.ml•Issue for GTK to make their window decorarions clickable at the cornerEnglish13·1 year agoI remember watching a youtube video about UI design on computers and the lady narrator said that the corners of the screen have effectively infinite size. I don’t remember anything else but that line stood out.
UntouchedWagons@lemmy.cato Linux@lemmy.ml•XPipe 9 comes with VNC, RDP, and SSH X11 support, a better SSH integration, terminal improvements, and many bug fixesEnglish1·1 year agoOh cool I’ve been looking for something like mobaxterm but for Linux. I’ll definitely check this out.
Everything went smooth for me though my install is fairly pedestrian.
UntouchedWagons@lemmy.cato Linux@lemmy.ml•Why is folder sharing between host and guest in KVM so hard?English5·1 year agoWhere are you expecting to see the host in windows? In the Network window? If so you’ll want to install, enable and run wsdd2
UntouchedWagons@lemmy.cato Memes@lemmy.ml•As if we need another reason to switch to GNU/LinuxEnglish5·1 year agoIt never even occurred to me to consider the height of the boxes lol
UntouchedWagons@lemmy.cato Memes@lemmy.ml•As if we need another reason to switch to GNU/LinuxEnglish2·1 year agoWhy is the bar for Windows as long as the bar for cats?
UntouchedWagons@lemmy.caOPto Linux@lemmy.ml•How are nvidia gpus with wayland nowadays? I read a while ago it was terrible, has it improved?English2·1 year agoOkay that’s good to know, thanks!
UntouchedWagons@lemmy.caOPto Linux@lemmy.ml•How are nvidia gpus with wayland nowadays? I read a while ago it was terrible, has it improved?English3·1 year agoIs Spotify an electron app? I’ve noticed on my laptop (with intel gpu) that in Discord the screen flickers when selecting a gif and Discord is an Electron app I’m pretty sure.
UntouchedWagons@lemmy.caOPto Linux@lemmy.ml•How are nvidia gpus with wayland nowadays? I read a while ago it was terrible, has it improved?English4·1 year agoHow would I find out this patch is in, say, Fedora?
UntouchedWagons@lemmy.cato Linux@lemmy.ml•Mozilla released a Firefox Nightly test build with vertical tabs - gHacks Tech NewsEnglish8·1 year agoI’ve been using TST for years and while it can be a bit buggy at times I couldn’t imagine going back to the default tab system.
UntouchedWagons@lemmy.cato Linux@lemmy.ml•Do you daily drive Wayland, if so since when, if not when will you?English1·1 year agoI use Wayland on my laptop running fedora 39 kde spin and it mostly runs fine. When I browse gifs in discord the screen flashes white and I can’t maximize jellyfin on connected TVs but other than that no major issues.
UntouchedWagons@lemmy.cato Technology@beehaw.org•The EU’s tough new moderation rules are about to cover a lot more of the internet.English6·1 year agoI like how AP considers onlyfans to be a household name.
Debian because it just works. I am interested in trying NixOS though.